diff --git a/handler/ux/commands.py b/handler/ux/commands.py index ce0a627..675f897 100644 --- a/handler/ux/commands.py +++ b/handler/ux/commands.py @@ -810,7 +810,10 @@ class IRCCommands(object): account_id = spl[1] transactions = tx.sinks.nordigen.get_transactions(account_id) for transaction in transactions: - txid = transaction["transaction_id"] + if "transaction_id" in transaction: + txid = transaction["transaction_id"] + else: + txid = "not_set" timestamp = transaction["timestamp"] amount = transaction["amount"] currency = transaction["currency"]