Remove verify flag from TransactionDetails

This commit is contained in:
rajarshimaitra
2021-12-16 21:06:59 +05:30
parent acbf0ae08e
commit 08f312a82f
7 changed files with 0 additions and 15 deletions

View File

@@ -271,7 +271,6 @@ impl Blockchain for RpcBlockchain {
received,
sent,
fee: tx_result.fee.map(|f| f.as_sat().abs() as u64),
verified: true,
};
debug!(
"saving tx: {} tx_result.fee:{:?} td.fees:{:?}",

View File

@@ -214,7 +214,6 @@ impl<'a, D: BatchDatabase> TxReq<'a, D> {
// we're going to fill this in later
confirmation_time: None,
fee: Some(fee),
verified: false,
})
})
.collect::<Result<Vec<_>, _>>()?;