github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/pkg/neorpc/result/raw_mempool.go (about)

     1  package result
     2  
     3  import "github.com/nspcc-dev/neo-go/pkg/util"
     4  
     5  // RawMempool represents a result of getrawmempool RPC call.
     6  type RawMempool struct {
     7  	Height     uint32         `json:"height"`
     8  	Verified   []util.Uint256 `json:"verified"`
     9  	Unverified []util.Uint256 `json:"unverified"`
    10  }