Skip to content

Commit 2e2e89c

Browse files
authored
miner: fix typo in payload_building_test.go (#28825)
1 parent c66ca8b commit 2e2e89c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

miner/payload_building_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ func TestBuildPayload(t *testing.T) {
5252
verify := func(outer *engine.ExecutionPayloadEnvelope, txs int) {
5353
payload := outer.ExecutionPayload
5454
if payload.ParentHash != b.chain.CurrentBlock().Hash() {
55-
t.Fatal("Unexpect parent hash")
55+
t.Fatal("Unexpected parent hash")
5656
}
5757
if payload.Random != (common.Hash{}) {
58-
t.Fatal("Unexpect random value")
58+
t.Fatal("Unexpected random value")
5959
}
6060
if payload.Timestamp != timestamp {
61-
t.Fatal("Unexpect timestamp")
61+
t.Fatal("Unexpected timestamp")
6262
}
6363
if payload.FeeRecipient != recipient {
64-
t.Fatal("Unexpect fee recipient")
64+
t.Fatal("Unexpected fee recipient")
6565
}
6666
if len(payload.Transactions) != txs {
67-
t.Fatal("Unexpect transaction set")
67+
t.Fatal("Unexpected transaction set")
6868
}
6969
}
7070
empty := payload.ResolveEmpty()

0 commit comments

Comments
 (0)