go.mod: upgrade to github.com/holiman/uint256 v1.2.0 (#22745)

This commit is contained in:
Martin Holst Swende
2021-05-10 12:29:33 +02:00
committed by GitHub
parent f19a679b09
commit ae5fcdc67f
5 changed files with 9 additions and 9 deletions

View File

@ -60,8 +60,8 @@ func TestStoreCapture(t *testing.T) {
Contract: contract,
}
)
scope.Stack.push(uint256.NewInt().SetUint64(1))
scope.Stack.push(uint256.NewInt())
scope.Stack.push(uint256.NewInt(1))
scope.Stack.push(new(uint256.Int))
var index common.Hash
logger.CaptureState(env, 0, SSTORE, 0, 0, scope, nil, 0, nil)
if len(logger.storage[contract.Address()]) == 0 {