1
0

compact serialized format for unsigned and partially signed transactions.

This commit is contained in:
ThomasV
2014-06-21 21:06:09 +02:00
parent 378633e6fa
commit 0636ef8b32
8 changed files with 251 additions and 177 deletions

View File

@@ -170,9 +170,9 @@ class Commands:
return tx
def signrawtransaction(self, raw_tx, input_info, private_keys):
def signrawtransaction(self, raw_tx, private_keys):
tx = Transaction(raw_tx)
self.wallet.signrawtransaction(tx, input_info, private_keys, self.password)
self.wallet.signrawtransaction(tx, private_keys, self.password)
return tx
def decoderawtransaction(self, raw):