Child chain doesn't currently validate that the signatures on each input are valid. This should happen inside apply_transaction. The easiest way to check this is with a check similar to self.blocks[blknum].transaction_set[txindex].newowner1 == tx.sender1 for each input.
Child chain doesn't currently validate that the signatures on each input are valid. This should happen inside
apply_transaction
. The easiest way to check this is with a check similar toself.blocks[blknum].transaction_set[txindex].newowner1 == tx.sender1
for each input.