本文整理汇总了Golang中github.com/conformal/btcjson.Cmd.SetId方法的典型用法代码示例。如果您正苦于以下问题:Golang Cmd.SetId方法的具体用法?Golang Cmd.SetId怎么用?Golang Cmd.SetId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/conformal/btcjson.Cmd
的用法示例。
在下文中一共展示了Cmd.SetId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: DeferToBtcd
// DeferToBtcd sends a marshaled JSON-RPC request to btcd and returns
// the reply.
func DeferToBtcd(cmd btcjson.Cmd) (interface{}, *btcjson.Error) {
// Update cmd with a new ID so replies can be handled without frontend
// IDs clashing with requests originating in btcwallet. The original
// request ID is always used in the frontend's response.
cmd.SetId(<-NewJSONID)
request := NewRPCRequest(cmd, nil)
response := <-CurrentRPCConn().SendRequest(request)
return response.Result, response.Err
}