mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 15:46:43 +00:00
Minor fix in statedb test
This commit is contained in:
parent
4968c08246
commit
d25aa76447
1 changed files with 2 additions and 2 deletions
|
|
@ -524,8 +524,8 @@ func TestMVHashMapReadWriteDelete(t *testing.T) {
|
|||
states[1].FlushMVWriteSet()
|
||||
|
||||
// Tx1 read
|
||||
v = states[2].GetState(addr, key)
|
||||
b := states[2].GetBalance(addr)
|
||||
v = states[1].GetState(addr, key)
|
||||
b := states[1].GetBalance(addr)
|
||||
|
||||
assert.Equal(t, val, v)
|
||||
assert.Equal(t, balance, b)
|
||||
|
|
|
|||
Loading…
Reference in a new issue