Confirmation count included in API command history

This commit is contained in:
Janne Pulkkinen 2014-08-19 20:57:37 +03:00
parent 6b914232e4
commit 95413cd1a9
1 changed files with 1 additions and 1 deletions

View File

@ -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):