github.com/machinefi/w3bstream@v1.6.5-rc9.0.20240426031326-b8c7c4876e72/pkg/modules/vm/wasmapi/handler/common.go (about)

     1  package handler
     2  
     3  type errResp struct {
     4  	Error string `json:"error,omitempty"`
     5  }
     6  
     7  func newErrResp(err error) *errResp {
     8  	return &errResp{Error: err.Error()}
     9  }