Merge pull request #797 from Matoking/master

Add confirmation count to API command 'history'
This commit is contained in:
ThomasV 2014-08-25 14:07:28 +02:00
commit 9fea7dfbde
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):