Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.

Commit bb94d07

Browse files
committed
Fix TestBodyExtraGetWith
1 parent c5fe919 commit bb94d07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/types/body_ext.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func (b *BodyExtra) RLPFieldPointersForDecoding(body *Body) *rlp.Fields {
4545
&body.Transactions,
4646
&body.Uncles,
4747
&b.Version,
48-
rlp.Nillable(&b.ExtData), // equivalent to `rlp:"nil"`
48+
&b.ExtData, // equivalent to `rlp:"nil"`
4949
},
5050
}
5151
}

0 commit comments

Comments
 (0)