Fixes #2275, transactionCommited txid list

txid list was empty when emitted
This commit is contained in:
Dusan Klinec
2019-07-08 16:09:03 +02:00
parent c4b3fbae1d
commit 4b0d1dcfbf
2 changed files with 3 additions and 2 deletions

View File

@@ -524,7 +524,8 @@ bool Wallet::submitTxFile(const QString &fileName) const
void Wallet::commitTransactionAsync(PendingTransaction *t)
{
m_scheduler.run([this, t] {
emit transactionCommitted(t->commit(), t, t->txid());
auto txIdList = t->txid(); // retrieve before commit
emit transactionCommitted(t->commit(), t, txIdList);
});
}