aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2018-11-29 16:51:57 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-11-29 16:51:57 +0800
commit7c657fc78957d7ed302eba68bb6122b515364ac4 (patch)
tree61672d4974be958002d960b638a1e4f182d1f8b0 /core
parent3d21d455dca6e75a635ab5742c66c80ee175c3e7 (diff)
downloadgo-tangerine-7c657fc78957d7ed302eba68bb6122b515364ac4.tar
go-tangerine-7c657fc78957d7ed302eba68bb6122b515364ac4.tar.gz
go-tangerine-7c657fc78957d7ed302eba68bb6122b515364ac4.tar.bz2
go-tangerine-7c657fc78957d7ed302eba68bb6122b515364ac4.tar.lz
go-tangerine-7c657fc78957d7ed302eba68bb6122b515364ac4.tar.xz
go-tangerine-7c657fc78957d7ed302eba68bb6122b515364ac4.tar.zst
go-tangerine-7c657fc78957d7ed302eba68bb6122b515364ac4.zip
tests, core: update tests and make STATICCALL cause touch-delete (#18187)
Diffstat (limited to 'core')
-rw-r--r--core/vm/evm.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/vm/evm.go b/core/vm/evm.go
index 968d2219e..ba4d1e9eb 100644
--- a/core/vm/evm.go
+++ b/core/vm/evm.go
@@ -339,6 +339,12 @@ func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte
contract := NewContract(caller, to, new(big.Int), gas)
contract.SetCallCode(&addr, evm.StateDB.GetCodeHash(addr), evm.StateDB.GetCode(addr))
+ // We do an AddBalance of zero here, just in order to trigger a touch.
+ // This doesn't matter on Mainnet, where all empties are gone at the time of Byzantium,
+ // but is the correct thing to do and matters on other networks, in tests, and potential
+ // future scenarios
+ evm.StateDB.AddBalance(addr, bigZero)
+
// When an error was returned by the EVM or when setting the creation code
// above we revert to the snapshot and consume any gas remaining. Additionally
// when we're in Homestead this also counts for code storage gas errors.