Skip to content

Commit

Permalink
fix(rpc): Fix TransactionByHashResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Sep 6, 2024
1 parent 5cffec6 commit b3b2496
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ethereum_test_rpc/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ class TransactionByHashResponse(CamelModel):

ty: HexNumber = Field(..., alias="type")
gas_limit: HexNumber = Field(..., alias="gas")
gas_price: HexNumber
gas_price: HexNumber | None = None
max_fee_per_gas: HexNumber | None = None
max_priority_fee_per_gas: HexNumber | None = None
value: HexNumber
data: Bytes = Field(..., alias="input")
nonce: HexNumber
Expand Down

0 comments on commit b3b2496

Please sign in to comment.