Skip to content

Commit

Permalink
Merge pull request #316 from forta-network/caner/fix-trace-value-input
Browse files Browse the repository at this point in the history
Fix trace request number inputs
  • Loading branch information
canercidam authored Sep 5, 2024
2 parents c521234 + e1ecd9b commit 809b59a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions domain/ethereum.go
Original file line number Diff line number Diff line change
Expand Up @@ -291,12 +291,12 @@ type TransactionReceipt struct {

// TraceCallTransaction contains the fields of the to-be-simulated transaction.
type TraceCallTransaction struct {
From string `json:"from"`
To string `json:"to"`
Gas *int64 `json:"gas,omitempty"`
GasPrice *int64 `json:"gasPrice,omitempty"`
Value *int64 `json:"value,omitempty"`
Data string `json:"data"`
From string `json:"from"`
To string `json:"to"`
Gas *hexutil.Big `json:"gas,omitempty"`
GasPrice *hexutil.Big `json:"gasPrice,omitempty"`
Value *hexutil.Big `json:"value,omitempty"`
Data string `json:"data"`
}

// TraceCallConfig contains the tracer configuration to be used while simulating the transaction.
Expand Down

0 comments on commit 809b59a

Please sign in to comment.