diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2017-02-23 06:29:59 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-02-23 06:29:59 +0800 |
commit | 024d41d0c2660d8f1dfbeb14921c7109e30493a2 (patch) | |
tree | a2b4ed630b84084c7f439d1539ed0551ec729cbd /tests | |
parent | 46ec4357e73dd0c43951d11638d9aed94f8ffd29 (diff) | |
download | go-tangerine-024d41d0c2660d8f1dfbeb14921c7109e30493a2.tar.gz go-tangerine-024d41d0c2660d8f1dfbeb14921c7109e30493a2.tar.zst go-tangerine-024d41d0c2660d8f1dfbeb14921c7109e30493a2.zip |
core, core/state, core/vm: remove exported account getters (#3618)
Removed exported statedb object accessors, reducing the chance for nasty
bugs to creep in. It's also ugly and unnecessary to have these methods.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/block_test_util.go | 11 | ||||
-rw-r--r-- | tests/state_test_util.go | 16 | ||||
-rw-r--r-- | tests/vm_test_util.go | 10 |
3 files changed, 19 insertions, 18 deletions
diff --git a/tests/block_test_util.go b/tests/block_test_util.go index 695b47e0b..9199be774 100644 --- a/tests/block_test_util.go +++ b/tests/block_test_util.go @@ -32,7 +32,6 @@ import ( "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" - "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/logger/glog" @@ -222,10 +221,12 @@ func (t *BlockTest) InsertPreState(db ethdb.Database) (*state.StateDB, error) { if err != nil { return nil, err } - obj := statedb.CreateAccount(common.HexToAddress(addrString)) - obj.SetCode(crypto.Keccak256Hash(code), code) - obj.SetBalance(balance) - obj.SetNonce(nonce) + + addr := common.HexToAddress(addrString) + statedb.CreateAccount(addr) + statedb.SetCode(addr, code) + statedb.SetBalance(addr, balance) + statedb.SetNonce(addr, nonce) for k, v := range acct.Storage { statedb.SetState(common.HexToAddress(addrString), common.HexToHash(k), common.HexToHash(v)) } diff --git a/tests/state_test_util.go b/tests/state_test_util.go index e8ab29d14..a2a048205 100644 --- a/tests/state_test_util.go +++ b/tests/state_test_util.go @@ -165,25 +165,25 @@ func runStateTest(chainConfig *params.ChainConfig, test VmTest) error { // check post state for addr, account := range test.Post { - obj := statedb.GetStateObject(common.HexToAddress(addr)) - if obj == nil { + address := common.HexToAddress(addr) + if !statedb.Exist(address) { return fmt.Errorf("did not find expected post-state account: %s", addr) } - if obj.Balance().Cmp(common.Big(account.Balance)) != 0 { - return fmt.Errorf("(%x) balance failed. Expected: %v have: %v\n", obj.Address().Bytes()[:4], common.String2Big(account.Balance), obj.Balance()) + if balance := statedb.GetBalance(address); balance.Cmp(common.Big(account.Balance)) != 0 { + return fmt.Errorf("(%x) balance failed. Expected: %v have: %v\n", address[:4], common.String2Big(account.Balance), balance) } - if obj.Nonce() != common.String2Big(account.Nonce).Uint64() { - return fmt.Errorf("(%x) nonce failed. Expected: %v have: %v\n", obj.Address().Bytes()[:4], account.Nonce, obj.Nonce()) + if nonce := statedb.GetNonce(address); nonce != common.String2Big(account.Nonce).Uint64() { + return fmt.Errorf("(%x) nonce failed. Expected: %v have: %v\n", address[:4], account.Nonce, nonce) } for addr, value := range account.Storage { - v := statedb.GetState(obj.Address(), common.HexToHash(addr)) + v := statedb.GetState(address, common.HexToHash(addr)) vexp := common.HexToHash(value) if v != vexp { - return fmt.Errorf("storage failed:\n%x: %s:\nexpected: %x\nhave: %x\n(%v %v)\n", obj.Address().Bytes(), addr, vexp, v, vexp.Big(), v.Big()) + return fmt.Errorf("storage failed:\n%x: %s:\nexpected: %x\nhave: %x\n(%v %v)\n", address[:4], addr, vexp, v, vexp.Big(), v.Big()) } } } diff --git a/tests/vm_test_util.go b/tests/vm_test_util.go index 1edf0e425..3b7ba9b31 100644 --- a/tests/vm_test_util.go +++ b/tests/vm_test_util.go @@ -187,16 +187,16 @@ func runVmTest(test VmTest) error { } // check post state - for addr, account := range test.Post { - obj := statedb.GetStateObject(common.HexToAddress(addr)) - if obj == nil { + for address, account := range test.Post { + accountAddr := common.HexToAddress(address) + if !statedb.Exist(accountAddr) { continue } for addr, value := range account.Storage { - v := statedb.GetState(obj.Address(), common.HexToHash(addr)) + v := statedb.GetState(accountAddr, common.HexToHash(addr)) vexp := common.HexToHash(value) if v != vexp { - return fmt.Errorf("(%x: %s) storage failed. Expected %x, got %x (%v %v)\n", obj.Address().Bytes()[0:4], addr, vexp, v, vexp.Big(), v.Big()) + return fmt.Errorf("(%x: %s) storage failed. Expected %x, got %x (%v %v)\n", addr[:4], addr, vexp, v, vexp.Big(), v.Big()) } } } |