core/rawdb: fix body/receipts assertion messages in TestWriteAncientHeaderChain

This commit is contained in:
VolodymyrBg 2025-09-11 15:28:39 +03:00 committed by GitHub
parent cbf0b5bc92
commit ded41ce294
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -511,7 +511,7 @@ func TestWriteAncientHeaderChain(t *testing.T) {
t.Fatalf("unexpected body returned")
}
if blob := ReadReceiptsRLP(db, header.Hash(), header.Number.Uint64()); len(blob) != 0 {
t.Fatalf("unexpected body returned")
t.Fatalf("unexpected receipts returned")
}
}
}