Update eips.go

This commit is contained in:
Gregory Markou 2020-02-10 12:26:06 -05:00 committed by GitHub
parent 34bb132b10
commit 4bca109a48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,5 +88,6 @@ func opChainID(pc *uint64, interpreter *EVMInterpreter, contract *Contract, memo
// enable2200 applies EIP-2200 (Rebalance net-metered SSTORE) // enable2200 applies EIP-2200 (Rebalance net-metered SSTORE)
func enable2200(jt *JumpTable) { func enable2200(jt *JumpTable) {
jt[SLOAD].constantGas = params.SloadGasEIP1884
jt[SSTORE].dynamicGas = gasSStoreEIP2200 jt[SSTORE].dynamicGas = gasSStoreEIP2200
} }