Browse Source

Fix a block condition where cb is called immediately

pull/192/head
Jae Kwon 8 years ago
parent
commit
6a209ba3a8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      rpc/core/mempool.go

+ 1
- 1
rpc/core/mempool.go View File

@ -20,7 +20,7 @@ func BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) {
// Note: tx must be signed
func BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) {
resCh := make(chan *tmsp.Response)
resCh := make(chan *tmsp.Response, 1)
err := mempoolReactor.BroadcastTx(tx, func(res *tmsp.Response) {
resCh <- res
})


Loading…
Cancel
Save