aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/wallet.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2018-07-11 16:00:12 +0200
committerWladimir J. van der Laan <[email protected]>2018-07-11 16:36:15 +0200
commite538a952d5f05b9547df51d4c2a5b8858f3ab100 (patch)
treea0c6cd596e63557650bb3655cedb1edb4c02cc72 /src/interfaces/wallet.cpp
parentMerge #13586: refactor: add benchmarks to bech32::Encode/Decode (diff)
parentRemove useless mapRequest tracking that just effects Qt display. (diff)
downloaddiscoin-e538a952d5f05b9547df51d4c2a5b8858f3ab100.tar.xz
discoin-e538a952d5f05b9547df51d4c2a5b8858f3ab100.zip
Merge #13622: Remove mapRequest tracking that just effects Qt display.
beef7ec4be725beea870a2da510d2817487601ec Remove useless mapRequest tracking that just effects Qt display. (Matt Corallo) Pull request description: 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. Tree-SHA512: c9d0808fb60146919bb78d0860ec2193601966c944887eaae7837408422f7e85dfdb306407a613200cdd4726aec66da18df618ebc6a8cfe8650bf08d4a8dc155
Diffstat (limited to 'src/interfaces/wallet.cpp')
-rw-r--r--src/interfaces/wallet.cpp1
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);