mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-02-24 09:48:24 +00:00
fix fluffy rpc_eth_api tx object initialization
This commit is contained in:
parent
7c2e1ad3f3
commit
c6e7ac1647
@ -57,7 +57,10 @@ func init*(
|
||||
value: encodeQuantity(tx.value),
|
||||
v: encodeQuantity(tx.V.uint),
|
||||
r: encodeQuantity(tx.R),
|
||||
s: encodeQuantity(tx.S)
|
||||
s: encodeQuantity(tx.S),
|
||||
`type`: encodeQuantity(tx.txType.uint64),
|
||||
maxFeePerGas: encodeQuantity(tx.maxFee.uint64),
|
||||
maxPriorityFeePerGas: encodeQuantity(tx.maxPriorityFee.uint64),
|
||||
)
|
||||
|
||||
# Note: Similar as `populateBlockObject` from rpc_utils, but lacking the
|
||||
|
Loading…
x
Reference in New Issue
Block a user