diff --git a/core/types/transaction_marshalling.go b/core/types/transaction_marshalling.go index 7af302f565..9167d3cab8 100644 --- a/core/types/transaction_marshalling.go +++ b/core/types/transaction_marshalling.go @@ -548,9 +548,6 @@ func (tx *Transaction) UnmarshalJSON(input []byte) error { return errors.New("missing required field 'gas' for txdata") } itx.GasLimit = uint64(*dec.Gas) - if dec.Value == nil { - return errors.New("missing required field 'value' in transaction") - } if dec.Input == nil { return errors.New("missing required field 'input' in transaction") }