owari-taro
Results
1
issues of
owari-taro
what does it mean to write this if -statement in TxFetcher's fetch method? https://github.com/jimmysong/programmingbitcoin/blob/261a5115a35e1145b85236a4dd9036b5f111e90c/code-ch08/tx.py ``` if raw[4] == 0: raw = raw[:4] + raw[6:] tx = Tx.parse(BytesIO(raw), testnet=testnet) tx.locktime =...