programmingbitcoin
programmingbitcoin copied to clipboard
Repository for the book
I'm sure the answer is obvious since it's not covered in the book but why do we need to multiply 0 by `self.x`? https://github.com/jimmysong/programmingbitcoin/blob/2a6558263923214320bbdeb10826464fe24ef540/code-ch02/answers.py#L116
It appears that mainnet.programmingbitcoin.com is down. I am getting a connection refused error when I try to connect with TCP. I also noted that when I try to connect with...
The instructions for the exercise in chapter 9's helper.py says: `# if the new target is bigger than MAX_TARGET, set to MAX_TARGET` However, MAX_TARGET is not defined in helper.py, and...
`TWO_WEEKS` is defined in `helper.py`, not `block.py`.
To match the inserted code, `commands` in the preceding context code should be replaced by `cmds`.
Markdown headers didn't render correctly as they didn't have a space after the pound signs.
Without the functionality of creating a ScriptSig with an uncompressed SEC for the public key, it is not possible to spend bitcoin sent to an address created from an uncompressed...
op_2rot, according to the bitcoin script wiki, is supposed to *move* the 5th and 6th items to the top of the stack, but you've done a *copy*.