mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
core/vm: remove eip 1283 sstore gas change
This commit is contained in:
parent
f50d66f2d8
commit
ac18679d55
1 changed files with 12 additions and 58 deletions
|
|
@ -120,8 +120,6 @@ func gasSStore(gt params.GasTable, evm *EVM, contract *Contract, stack *Stack, m
|
||||||
y, x = stack.Back(1), stack.Back(0)
|
y, x = stack.Back(1), stack.Back(0)
|
||||||
current = evm.StateDB.GetState(contract.Address(), common.BigToHash(x))
|
current = evm.StateDB.GetState(contract.Address(), common.BigToHash(x))
|
||||||
)
|
)
|
||||||
// The legacy gas metering only takes into consideration the current state
|
|
||||||
if !evm.chainRules.IsConstantinople {
|
|
||||||
// This checks for 3 scenario's and calculates gas accordingly:
|
// This checks for 3 scenario's and calculates gas accordingly:
|
||||||
//
|
//
|
||||||
// 1. From a zero-value address to a non-zero value (NEW VALUE)
|
// 1. From a zero-value address to a non-zero value (NEW VALUE)
|
||||||
|
|
@ -136,50 +134,6 @@ func gasSStore(gt params.GasTable, evm *EVM, contract *Contract, stack *Stack, m
|
||||||
default: // non 0 => non 0 (or 0 => 0)
|
default: // non 0 => non 0 (or 0 => 0)
|
||||||
return params.SstoreResetGas, nil
|
return params.SstoreResetGas, nil
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// The new gas metering is based on net gas costs (EIP-1283):
|
|
||||||
//
|
|
||||||
// 1. If current value equals new value (this is a no-op), 200 gas is deducted.
|
|
||||||
// 2. If current value does not equal new value
|
|
||||||
// 2.1. If original value equals current value (this storage slot has not been changed by the current execution context)
|
|
||||||
// 2.1.1. If original value is 0, 20000 gas is deducted.
|
|
||||||
// 2.1.2. Otherwise, 5000 gas is deducted. If new value is 0, add 15000 gas to refund counter.
|
|
||||||
// 2.2. If original value does not equal current value (this storage slot is dirty), 200 gas is deducted. Apply both of the following clauses.
|
|
||||||
// 2.2.1. If original value is not 0
|
|
||||||
// 2.2.1.1. If current value is 0 (also means that new value is not 0), remove 15000 gas from refund counter. We can prove that refund counter will never go below 0.
|
|
||||||
// 2.2.1.2. If new value is 0 (also means that current value is not 0), add 15000 gas to refund counter.
|
|
||||||
// 2.2.2. If original value equals new value (this storage slot is reset)
|
|
||||||
// 2.2.2.1. If original value is 0, add 19800 gas to refund counter.
|
|
||||||
// 2.2.2.2. Otherwise, add 4800 gas to refund counter.
|
|
||||||
value := common.BigToHash(y)
|
|
||||||
if current == value { // noop (1)
|
|
||||||
return params.NetSstoreNoopGas, nil
|
|
||||||
}
|
|
||||||
original := evm.StateDB.GetCommittedState(contract.Address(), common.BigToHash(x))
|
|
||||||
if original == current {
|
|
||||||
if original == (common.Hash{}) { // create slot (2.1.1)
|
|
||||||
return params.NetSstoreInitGas, nil
|
|
||||||
}
|
|
||||||
if value == (common.Hash{}) { // delete slot (2.1.2b)
|
|
||||||
evm.StateDB.AddRefund(params.NetSstoreClearRefund)
|
|
||||||
}
|
|
||||||
return params.NetSstoreCleanGas, nil // write existing slot (2.1.2)
|
|
||||||
}
|
|
||||||
if original != (common.Hash{}) {
|
|
||||||
if current == (common.Hash{}) { // recreate slot (2.2.1.1)
|
|
||||||
evm.StateDB.SubRefund(params.NetSstoreClearRefund)
|
|
||||||
} else if value == (common.Hash{}) { // delete slot (2.2.1.2)
|
|
||||||
evm.StateDB.AddRefund(params.NetSstoreClearRefund)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if original == value {
|
|
||||||
if original == (common.Hash{}) { // reset to original inexistent slot (2.2.2.1)
|
|
||||||
evm.StateDB.AddRefund(params.NetSstoreResetClearRefund)
|
|
||||||
} else { // reset to original existing slot (2.2.2.2)
|
|
||||||
evm.StateDB.AddRefund(params.NetSstoreResetRefund)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return params.NetSstoreDirtyGas, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func makeGasLog(n uint64) gasFunc {
|
func makeGasLog(n uint64) gasFunc {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue