forked from cerc-io/ipld-eth-server
Update dependencies
- uses newer version of go-ethereum required for go1.11
This commit is contained in:
+17
-1
@@ -883,7 +883,7 @@ func (m *wsNotificationManager) RegisterSpentRequests(wsc *wsClient, ops []*wire
|
||||
// addSpentRequests modifies a map of watched outpoints to sets of websocket
|
||||
// clients to add a new request watch all of the outpoints in ops and create
|
||||
// and send a notification when spent to the websocket client wsc.
|
||||
func (*wsNotificationManager) addSpentRequests(opMap map[wire.OutPoint]map[chan struct{}]*wsClient,
|
||||
func (m *wsNotificationManager) addSpentRequests(opMap map[wire.OutPoint]map[chan struct{}]*wsClient,
|
||||
wsc *wsClient, ops []*wire.OutPoint) {
|
||||
|
||||
for _, op := range ops {
|
||||
@@ -900,6 +900,22 @@ func (*wsNotificationManager) addSpentRequests(opMap map[wire.OutPoint]map[chan
|
||||
}
|
||||
cmap[wsc.quit] = wsc
|
||||
}
|
||||
|
||||
// Check if any transactions spending these outputs already exists in
|
||||
// the mempool, if so send the notification immediately.
|
||||
spends := make(map[chainhash.Hash]*btcutil.Tx)
|
||||
for _, op := range ops {
|
||||
spend := m.server.cfg.TxMemPool.CheckSpend(*op)
|
||||
if spend != nil {
|
||||
rpcsLog.Debugf("Found existing mempool spend for "+
|
||||
"outpoint<%v>: %v", op, spend.Hash())
|
||||
spends[*spend.Hash()] = spend
|
||||
}
|
||||
}
|
||||
|
||||
for _, spend := range spends {
|
||||
m.notifyForTx(opMap, nil, spend, nil)
|
||||
}
|
||||
}
|
||||
|
||||
// UnregisterSpentRequest removes a request from the passed websocket client
|
||||
|
||||
Reference in New Issue
Block a user