We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e49ad6 commit e5b3c5dCopy full SHA for e5b3c5d
core/types/block.go
@@ -212,7 +212,7 @@ type Block struct {
212
ReceivedAt time.Time
213
ReceivedFrom interface{}
214
215
- extra *pseudo.Type // See RegisterExtras()
+ extra *pseudo.Type // See [RegisterExtras]
216
}
217
218
// "external" block encoding. used for eth protocol, etc.
core/types/block.libevm_test.go
@@ -249,7 +249,7 @@ func TestBlockWithX(t *testing.T) {
249
case "WithWithdrawals":
250
newBlock = block.WithWithdrawals(nil)
251
default:
252
- t.Fatal("method call not implemented")
+ t.Fatalf("method call not implemented: %s", method)
253
254
255
payload.x++
0 commit comments