Sign inputs for transaction FIXME: implement options
(self, tx, *args)
| 729 | return lx(r) |
| 730 | |
| 731 | def signrawtransaction(self, tx, *args): |
| 732 | """Sign inputs for transaction |
| 733 | |
| 734 | FIXME: implement options |
| 735 | """ |
| 736 | hextx = hexlify_str(tx.serialize()) |
| 737 | r = self._call('signrawtransaction', hextx, *args) |
| 738 | r['tx'] = CTransaction.deserialize(unhexlify_str(r['hex'])) |
| 739 | del r['hex'] |
| 740 | return r |
| 741 | |
| 742 | def signrawtransactionwithwallet(self, tx, *args): |
| 743 | """Sign inputs for transaction |
no test coverage detected