call_result.go 266 B

12345678910
  1. package ethapi
  2. import "github.com/ethereum/go-ethereum/common/hexutil"
  3. // CallResult is the result of one call.
  4. type CallResult struct {
  5. Data hexutil.Bytes `json:"data,omitempty"`
  6. Msg string `json:"message"`
  7. Success bool `json:"state"`
  8. }