// CreateRawSSRtxAsync returns an instance of a type that can be used to // get the result of the RPC at some future time by invoking the Receive // function on the returned instance. // // See CreateRawSSRtx for the blocking version and more details. func (c *Client) CreateRawSSRtxAsync(inputs []dcrjson.TransactionInput) FutureCreateRawSSRtxResult { cmd := dcrjson.NewCreateRawSSRtxCmd(inputs) return c.sendCmd(cmd) }
// CreateRawSSRtxAsync returns an instance of a type that can be used to // get the result of the RPC at some future time by invoking the Receive // function on the returned instance. // // See CreateRawSSRtx for the blocking version and more details. func (c *Client) CreateRawSSRtxAsync(inputs []dcrjson.TransactionInput, fee dcrutil.Amount) FutureCreateRawSSRtxResult { feeF64 := fee.ToCoin() cmd := dcrjson.NewCreateRawSSRtxCmd(inputs, &feeF64) return c.sendCmd(cmd) }