mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-11-02 05:07:01 +00:00
Fix decoy tx fetching
This commit is contained in:
@@ -816,8 +816,10 @@ impl LightWallet {
|
||||
// Mark this Tx as scanned
|
||||
{
|
||||
let mut txs = self.txs.write().unwrap();
|
||||
let mut wtx = txs.get_mut(&tx.txid()).unwrap();
|
||||
wtx.full_tx_scanned = true;
|
||||
match txs.get_mut(&tx.txid()) {
|
||||
Some(wtx) => wtx.full_tx_scanned = true,
|
||||
None => {},
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user