mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
trie: fix error message in test (#32772)
Fixes an error message in TestReplication
This commit is contained in:
parent
265db06242
commit
c5a1c35cfb
1 changed files with 1 additions and 1 deletions
|
|
@ -326,7 +326,7 @@ func TestReplication(t *testing.T) {
|
|||
updateString(trie2, val.k, val.v)
|
||||
}
|
||||
if trie2.Hash() != hash {
|
||||
t.Errorf("root failure. expected %x got %x", hash, hash)
|
||||
t.Errorf("root failure. expected %x got %x", hash, trie2.Hash())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue