Skip to content

Commit 6287e6d

Browse files
authored
estimator: call override json tags (#174)
1 parent c20ffd2 commit 6287e6d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

estimator.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ var (
3838
)
3939

4040
type CallOverride struct {
41-
Code string
42-
Balance *big.Int
43-
Nonce *big.Int
44-
StateDiff []*StateOverride
45-
State []*StateOverride
41+
Code string `json:"code"`
42+
Balance *big.Int `json:"balance"`
43+
Nonce *big.Int `json:"nonce"`
44+
StateDiff []*StateOverride `json:"stateDiff"`
45+
State []*StateOverride `json:"state"`
4646
}
4747

4848
type StateOverride struct {

0 commit comments

Comments
 (0)