1
0

rename inpust_info -> input_info

This commit is contained in:
thomasv
2013-02-25 09:34:47 +01:00
parent b8a71ff00c
commit 8b8e2fd67b
3 changed files with 7 additions and 7 deletions

View File

@@ -484,7 +484,7 @@ class Transaction:
print i
e = { 'txid':i['tx_hash'], 'vout':i['index'],'scriptPubKey':i['raw_output_script'] }
extras.append(e)
self.inputs_info = extras
self.input_info = extras
return self
def __str__(self):

View File

@@ -672,7 +672,7 @@ class Wallet:
for i in range(len(tx.inputs)):
addr = tx.inputs[i]['address']
n, is_change = self.get_address_index(addr)
tx.inputs_info[i]['electrumKeyID'] = (n, is_change)
tx.input_info[i]['electrumKeyID'] = (n, is_change)
if not self.seed:
return tx