diff options
| author | Amiti Uttarwar <[email protected]> | 2020-07-27 21:30:50 -0700 |
|---|---|---|
| committer | Amiti Uttarwar <[email protected]> | 2020-09-04 14:29:29 -0700 |
| commit | cb79b9dbf4cd06e17c8c65b36bf15c3ea2641de4 (patch) | |
| tree | 43860832dcabade3ecfcfdba3af41ba10cfe9adb /src/node/transaction.cpp | |
| parent | Merge #19405: rpc, cli: add network in/out connections to `getnetworkinfo` an... (diff) | |
| download | discoin-cb79b9dbf4cd06e17c8c65b36bf15c3ea2641de4.tar.xz discoin-cb79b9dbf4cd06e17c8c65b36bf15c3ea2641de4.zip | |
[mempool] Revert unbroadcast set to tracking just txid
When I originally implemented the unbroadcast set in 18038, it just tracked
txids. After 18038 was merged, I offered a patch to 18044 to make the
unbroadcast changes compatible with wtxid relay. In this patch, I updated
`unbroadcast_txids` to a map of txid -> wtxid. Post merge review comments shed
light on the fact that this update was unnecessary, and distracting. So, this
commit updates the unbroadcast ids back to a set.
Diffstat (limited to 'src/node/transaction.cpp')
| -rw-r--r-- | src/node/transaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/transaction.cpp b/src/node/transaction.cpp index 5633abe81..586bc8d2a 100644 --- a/src/node/transaction.cpp +++ b/src/node/transaction.cpp @@ -80,7 +80,7 @@ TransactionError BroadcastTransaction(NodeContext& node, const CTransactionRef t if (relay) { // the mempool tracks locally submitted transactions to make a // best-effort of initial broadcast - node.mempool->AddUnbroadcastTx(hashTx, tx->GetWitnessHash()); + node.mempool->AddUnbroadcastTx(hashTx); LOCK(cs_main); RelayTransaction(hashTx, tx->GetWitnessHash(), *node.connman); |