mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 13:16:42 +00:00
trie: fix TestOneElementProof expected value message
This commit is contained in:
parent
ad55a3e07f
commit
e350aefa34
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ func TestOneElementProof(t *testing.T) {
|
|||
t.Fatalf("prover %d: failed to verify proof: %v\nraw proof: %x", i, err, proof)
|
||||
}
|
||||
if !bytes.Equal(val, []byte("v")) {
|
||||
t.Fatalf("prover %d: verified value mismatch: have %x, want 'k'", i, val)
|
||||
t.Fatalf("prover %d: verified value mismatch: have %x, want 'v'", i, val)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue