diff options
| author | Matt Corallo <[email protected]> | 2018-07-09 20:06:39 -0400 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2018-07-09 20:06:39 -0400 |
| commit | beef7ec4be725beea870a2da510d2817487601ec (patch) | |
| tree | ef04c6baeb971bf61a8d4024e15034c527ac059b /src/interfaces/wallet.cpp | |
| parent | Merge #13481: doc: Rewrite some validation docs as lock annotations (diff) | |
| download | discoin-beef7ec4be725beea870a2da510d2817487601ec.tar.xz discoin-beef7ec4be725beea870a2da510d2817487601ec.zip | |
Remove useless mapRequest tracking that just effects Qt display.
I thought we had removed this a long time ago, TBH, its really
confusing feedback to users that we display whether a tx was
broadcast to immediate neighbor nodes, given that has little
indication of whether the tx propagated very far.
Diffstat (limited to 'src/interfaces/wallet.cpp')
| -rw-r--r-- | src/interfaces/wallet.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/interfaces/wallet.cpp b/src/interfaces/wallet.cpp index e98acba0d..aade4b2df 100644 --- a/src/interfaces/wallet.cpp +++ b/src/interfaces/wallet.cpp @@ -93,7 +93,6 @@ WalletTxStatus MakeWalletTxStatus(const CWalletTx& wtx) result.block_height = (block ? block->nHeight : std::numeric_limits<int>::max()), result.blocks_to_maturity = wtx.GetBlocksToMaturity(); result.depth_in_main_chain = wtx.GetDepthInMainChain(); - result.request_count = wtx.GetRequestCount(); result.time_received = wtx.nTimeReceived; result.lock_time = wtx.tx->nLockTime; result.is_final = CheckFinalTx(*wtx.tx); |