Skip to content

Commit 5c3b5d7

Browse files
committed
EEI: charge for memory gas cost in useGas
1 parent f305443 commit 5c3b5d7

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/eei.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ namespace HeraVM {
146146
HERA_DEBUG << "useGas " << gas << "\n";
147147

148148
takeGas(gas);
149+
// FIXME: this may overflow
150+
takeGas(gas * memory.size() / memory_page_size * memory_cost);
149151

150152
return Literal();
151153
}

src/eei.h

+3
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ struct EthereumInterface : ShellExternalInterface {
113113
struct evm_message const& msg;
114114
std::vector<uint8_t> lastReturnData;
115115
ExecutionResult & result;
116+
117+
static constexpr unsigned memory_page_size = 65536;
118+
static constexpr unsigned memory_cost = 1;
116119
};
117120

118121
struct GasSchedule {

0 commit comments

Comments
 (0)