mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-03 14:52:55 +00:00
fix build failure
This commit is contained in:
parent
e28632b997
commit
a0704364ce
1 changed files with 1 additions and 2 deletions
|
|
@ -27,8 +27,7 @@ func TestTestRunner(t *testing.T) {
|
||||||
for key, value := range source.Inputs {
|
for key, value := range source.Inputs {
|
||||||
trie.Update(key, value)
|
trie.Update(key, value)
|
||||||
}
|
}
|
||||||
|
if hex.EncodeToString(trie.Root.([]byte)) != source.Expectation {
|
||||||
if hex.EncodeToString([]byte(trie.Root)) != source.Expectation {
|
|
||||||
t.Error("trie root did not match")
|
t.Error("trie root did not match")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue