We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f305443 commit 5c3b5d7Copy full SHA for 5c3b5d7
src/eei.cpp
@@ -146,6 +146,8 @@ namespace HeraVM {
146
HERA_DEBUG << "useGas " << gas << "\n";
147
148
takeGas(gas);
149
+ // FIXME: this may overflow
150
+ takeGas(gas * memory.size() / memory_page_size * memory_cost);
151
152
return Literal();
153
}
src/eei.h
@@ -113,6 +113,9 @@ struct EthereumInterface : ShellExternalInterface {
113
struct evm_message const& msg;
114
std::vector<uint8_t> lastReturnData;
115
ExecutionResult & result;
116
+
117
+ static constexpr unsigned memory_page_size = 65536;
118
+ static constexpr unsigned memory_cost = 1;
119
};
120
121
struct GasSchedule {
0 commit comments