From 47bf4f67c0a122a498a444c6e57a9d3479ed7f82 Mon Sep 17 00:00:00 2001 From: William Hua Date: Thu, 7 Nov 2024 12:08:37 -0500 Subject: [PATCH] estimator: call override json tags --- estimator.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/estimator.go b/estimator.go index 191b3420..e6348d81 100644 --- a/estimator.go +++ b/estimator.go @@ -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 {