http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/src/f06e48ec2759a63368f993af8ba4a10068b82765/mmgen/proto/btc/tx/base.py
= int(self.locktime or 0): do_error( f'Transaction hex nLockTime ({dtx.locktime}) ' + f'does not match MMGen transaction nLockTime ({self.locktime})' ) check_equal( 'sequence numbers', [int(i['nSeq'],16) for i in dtx.txins], [i.sequence or self.proto.max_int for i in self.inputs] ) check_equal( 'inputs', sorted((i['txid'],i['vout']) for i in dtx.txins), sorted((i.txid,i.vout) for i in...