Sign inputs for transaction bicoincore >= 0.17.x FIXME: implement options
(self, tx, *args)
| 740 | return r |
| 741 | |
| 742 | def signrawtransactionwithwallet(self, tx, *args): |
| 743 | """Sign inputs for transaction |
| 744 | bicoincore >= 0.17.x |
| 745 | |
| 746 | FIXME: implement options |
| 747 | """ |
| 748 | hextx = hexlify_str(tx.serialize()) |
| 749 | r = self._call('signrawtransactionwithwallet', hextx, *args) |
| 750 | r['tx'] = CTransaction.deserialize(unhexlify_str(r['hex'])) |
| 751 | del r['hex'] |
| 752 | return r |
| 753 | |
| 754 | def submitblock(self, block, params=None): |
| 755 | """Submit a new block to the network. |
nothing calls this directly
no test coverage detected