mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-11 14:33:52 +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()
|
states[1].FlushMVWriteSet()
|
||||||
|
|
||||||
// Tx1 read
|
// Tx1 read
|
||||||
v = states[2].GetState(addr, key)
|
v = states[1].GetState(addr, key)
|
||||||
b := states[2].GetBalance(addr)
|
b := states[1].GetBalance(addr)
|
||||||
|
|
||||||
assert.Equal(t, val, v)
|
assert.Equal(t, val, v)
|
||||||
assert.Equal(t, balance, b)
|
assert.Equal(t, balance, b)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue