Skip to content

Commit

Permalink
estimator: call override json tags (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
attente authored Nov 7, 2024
1 parent c20ffd2 commit 6287e6d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions estimator.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ var (
)

type CallOverride struct {
Code string
Balance *big.Int
Nonce *big.Int
StateDiff []*StateOverride
State []*StateOverride
Code string `json:"code"`
Balance *big.Int `json:"balance"`
Nonce *big.Int `json:"nonce"`
StateDiff []*StateOverride `json:"stateDiff"`
State []*StateOverride `json:"state"`
}

type StateOverride struct {
Expand Down

0 comments on commit 6287e6d

Please sign in to comment.