We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f58674a commit aecd615Copy full SHA for aecd615
src/interfaces/wallet.cpp
@@ -90,7 +90,7 @@ WalletTxStatus MakeWalletTxStatus(const CWalletTx& wtx)
90
WalletTxStatus result;
91
auto mi = ::mapBlockIndex.find(wtx.hashBlock);
92
CBlockIndex* block = mi != ::mapBlockIndex.end() ? mi->second : nullptr;
93
- result.block_height = (block ? block->nHeight : std::numeric_limits<int>::max()),
+ result.block_height = (block ? block->nHeight : std::numeric_limits<int>::max());
94
result.blocks_to_maturity = wtx.GetBlocksToMaturity();
95
result.depth_in_main_chain = wtx.GetDepthInMainChain();
96
result.time_received = wtx.nTimeReceived;
0 commit comments