Skip to content

Commit 888841e

Browse files
author
MarcoFalke
committed
interfaces: Remove unused is_final
1 parent dddd05e commit 888841e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/interfaces/wallet.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,6 @@ struct WalletTxStatus
405405
int depth_in_main_chain;
406406
unsigned int time_received;
407407
uint32_t lock_time;
408-
bool is_final;
409408
bool is_trusted;
410409
bool is_abandoned;
411410
bool is_coinbase;

src/wallet/interfaces.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ WalletTxStatus MakeWalletTxStatus(const CWallet& wallet, const CWalletTx& wtx)
9090
result.depth_in_main_chain = wallet.GetTxDepthInMainChain(wtx);
9191
result.time_received = wtx.nTimeReceived;
9292
result.lock_time = wtx.tx->nLockTime;
93-
result.is_final = wallet.chain().checkFinalTx(*wtx.tx);
9493
result.is_trusted = CachedTxIsTrusted(wallet, wtx);
9594
result.is_abandoned = wtx.isAbandoned();
9695
result.is_coinbase = wtx.IsCoinBase();

0 commit comments

Comments
 (0)