We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1cec39a + 8dc8632 commit 008cf72Copy full SHA for 008cf72
src/Chain/libraries/wallet/TransactionLedger.cpp
@@ -1717,7 +1717,7 @@ vector<PrettyTransaction> Wallet::get_pretty_transaction_history(const string& a
1717
}
1718
1719
1720
- pretties.push_back(to_pretty_trx(item));
+ pretties.push_back(pretty_trx);
1721
1722
1723
const auto sorter = [](const PrettyTransaction& a, const PrettyTransaction& b) -> bool
@@ -2114,6 +2114,13 @@ PrettyTransaction Wallet::to_pretty_trx(const WalletTransactionEntry& trx_rec) c
2114
break;
2115
2116
2117
+ /*contract*/
2118
+ case transaction_op_type:
2119
+ {
2120
+ pretty_trx.trx_type = thinkyoung::blockchain::TransactionType::call_contract_transaction;
2121
+ break;
2122
+ }
2123
+
2124
default:
2125
2126
0 commit comments