Skip to content

Commit

Permalink
make TransactionArgs json camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroXbrock authored Oct 23, 2023
1 parent a9c166c commit ff959ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/ethapi/transaction_args.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ type TransactionArgs struct {
MaxFeePerGas *hexutil.Big `json:"maxFeePerGas"`
MaxPriorityFeePerGas *hexutil.Big `json:"maxPriorityFeePerGas"`
Value *hexutil.Big `json:"value"`
IsConfidential bool `json:"IsConfidential"`
IsConfidential bool `json:"isConfidential"`
ExecutionNode *common.Address `json:"executionNode"`
ConfidentialInputs *hexutil.Bytes `json:"confidentialInputs"` // TODO: testme
ConfidentialResult *hexutil.Bytes `json:"ConfidentialResult"` // TODO: testme
ConfidentialResult *hexutil.Bytes `json:"confidentialResult"` // TODO: testme
Nonce *hexutil.Uint64 `json:"nonce"`

// We accept "data" and "input" for backwards-compatibility reasons.
Expand Down

0 comments on commit ff959ea

Please sign in to comment.