1
0

don't wait for wallet sync in rpc commands; instead, show wallet status in status command

This commit is contained in:
ThomasV
2015-12-17 17:54:49 +01:00
parent 026f9312a7
commit 3bed2e3106
2 changed files with 2 additions and 4 deletions

View File

@@ -443,7 +443,7 @@ class Commands:
time_str = datetime.datetime.fromtimestamp(timestamp).isoformat(' ')[:-3]
except Exception:
time_str = "----"
label, is_default_label = self.wallet.get_label(tx_hash)
label = self.wallet.get_label(tx_hash)
out.append({
'txid':tx_hash,
'timestamp':timestamp,