Browse Source

Merge pull request #797 from Matoking/master

Add confirmation count to API command 'history'
283
ThomasV 10 years ago
parent
commit
9fea7dfbde
  1. 2
      lib/commands.py

2
lib/commands.py

@ -320,7 +320,7 @@ class Commands:
label, is_default_label = self.wallet.get_label(tx_hash)
out.append({'txid':tx_hash, 'date':"%16s"%time_str, 'label':label, 'value':format_satoshis(value)})
out.append({'txid':tx_hash, 'date':"%16s"%time_str, 'label':label, 'value':format_satoshis(value), 'confirmations':conf})
return out
def setlabel(self, key, label):

Loading…
Cancel
Save