In the kroma e2e test, errors occurred that EffectiveGasPrice and DepositNonce could not be unmarshaled.
In this regard, there was some discrepancy between receipt and gen_receipt_json.go.
Referring to this PR, which was also reflected in ethereum/go-ethereum, gen_receipt_json.go has been regenerated and testdata were modified accordingly.
And the EffectiveGasPrice is required as described in spec, so the omitempty tag has been removed.
In the kroma e2e test, errors occurred that
EffectiveGasPrice
andDepositNonce
could not be unmarshaled. In this regard, there was some discrepancy betweenreceipt
andgen_receipt_json.go
. Referring to this PR, which was also reflected inethereum/go-ethereum
,gen_receipt_json.go
has been regenerated and testdata were modified accordingly.And the
EffectiveGasPrice
is required as described in spec, so theomitempty
tag has been removed.