mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
core: fix error message
This commit is contained in:
parent
05b0941a0d
commit
ac95472d3c
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ func TestGeneratePOSChain(t *testing.T) {
|
|||
t.Errorf("receipt has wrong block number %d, want %d", r.BlockNumber, block.Number())
|
||||
}
|
||||
if r.BlockHash != block.Hash() {
|
||||
t.Errorf("receipt has wrong block hash %v, want %v", r.BlockNumber, block.Hash())
|
||||
t.Errorf("receipt has wrong block hash %v, want %v", r.BlockHash, block.Hash())
|
||||
}
|
||||
|
||||
// patch up empty logs list to make DeepEqual below work
|
||||
|
|
|
|||
Loading…
Reference in a new issue