mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
bugfix: issuance to self not a debit
This commit is contained in:
parent
047799cb12
commit
881862c9c3
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const interface
|
|||
}
|
||||
|
||||
// Short-circuit when it's an issuance to self
|
||||
if (assets_issued_to_me_only.count(asset) == 0) {
|
||||
if (assets_issued_to_me_only.count(asset) != 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue