mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
core/rawdb: fix body/receipts assertion messages in TestWriteAncientHeaderChain
This commit is contained in:
parent
cbf0b5bc92
commit
ded41ce294
1 changed files with 1 additions and 1 deletions
|
|
@ -511,7 +511,7 @@ func TestWriteAncientHeaderChain(t *testing.T) {
|
||||||
t.Fatalf("unexpected body returned")
|
t.Fatalf("unexpected body returned")
|
||||||
}
|
}
|
||||||
if blob := ReadReceiptsRLP(db, header.Hash(), header.Number.Uint64()); len(blob) != 0 {
|
if blob := ReadReceiptsRLP(db, header.Hash(), header.Number.Uint64()); len(blob) != 0 {
|
||||||
t.Fatalf("unexpected body returned")
|
t.Fatalf("unexpected receipts returned")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue