[01:57:35] @paul @aguycalled This should work right? python def send_raw_transaction(self, decoded_raw_transaction, to_address, change_address, amount): # Create a raw tx inputs = [{ "txid" : decoded_raw_transaction["txid"], "vout" : 1}] outputs = { to_address : amount, change_address : float(decoded_raw_transaction["amount"]) - amount - 0.01 } rawtx = self.nodes[0].createrawtransaction(inputs, outputs) [01:57:36] # Sign raw transaction signresult = self.nodes[0].signrawtransaction(rawtx) print(signresult) assert(signresult["complete"]) # Send raw transaction return self.nodes[0].sendrawtransaction(signresult['hex']) [08:44:44] looks good but i cant say without running it [08:54:30] cool [08:54:33] It seems to work