bugfix: issuance to self not a debit

This commit is contained in:
Gregory Sanders 2019-04-09 11:17:27 -04:00
parent 047799cb12
commit 881862c9c3

View file

@ -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;
}