diff --git a/client/dto.go b/client/dto.go index 28416c9..c54559a 100644 --- a/client/dto.go +++ b/client/dto.go @@ -11,7 +11,7 @@ type ClientResponse[T any] struct { NeedSeq bool `json:"needSeq,omitempty"` Seq int `json:"seq,omitempty"` Status string `json:"status,omitempty"` - Result any `json:"result,omitempty"` + Result T `json:"result,omitempty"` IsInsnLimit bool `json:"isInsnLimit,omitempty"` TotalGas int `json:"totalGas,omitempty"` ExecutionGas int `json:"executionGas,omitempty"`