Skip to content

Commit

Permalink
bugfix: Fixed the json encoding of the rpc transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
gameofpointers committed Oct 9, 2024
1 parent a615e8c commit 98962d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/quaiapi/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -990,8 +990,8 @@ type RPCTransaction struct {
MinerTip *hexutil.Big `json:"minerTip,omitempty"`
GasPrice *hexutil.Big `json:"gasPrice,omitempty"`
Hash common.Hash `json:"hash,omitempty"`
Input hexutil.Bytes `json:"input,omitempty"`
Nonce hexutil.Uint64 `json:"nonce,omitempty"`
Input hexutil.Bytes `json:"input"`
Nonce hexutil.Uint64 `json:"nonce"`
To *common.MixedcaseAddress `json:"to,omitempty"`
TransactionIndex *hexutil.Uint64 `json:"transactionIndex"`
Value *hexutil.Big `json:"value,omitempty"`
Expand Down

0 comments on commit 98962d9

Please sign in to comment.