compact serialized format for unsigned and partially signed transactions.
[electrum-nvc.git] / lib / commands.py
index 5e6d9dc..8485ed1 100644 (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):