Skip to content

Commit 3a2910f

Browse files
committed
Initialize array_log and json_log with empty list
1 parent cd4d2bc commit 3a2910f

File tree

1 file changed

+2
-2
lines changed
  • secret_sdk/client/lcd/api

1 file changed

+2
-2
lines changed

secret_sdk/client/lcd/api/tx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ def decrypt_txs_response(self, txs_response) -> TxInfo:
222222

223223
txs_response = txs_response['tx_response']
224224
raw_log = txs_response['raw_log']
225-
json_log = None
226-
array_log = None
225+
json_log = []
226+
array_log = []
227227
events = txs_response['events']
228228

229229
code = txs_response['code']

0 commit comments

Comments
 (0)