1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-26 18:08:31 +00:00
Commit Graph

3258 Commits

Author SHA1 Message Date
Will Binns
2e06b08fd5
Merge pull request #559 from oboukli/chapter-06-updates
Chapter 06 Normalize and update URL to HTTPS scheme
2019-05-09 20:16:45 +00:00
Will Binns
df29764605
Merge pull request #563 from wintercooled/develop
Fixed broken link to rpcuser.py - is actually rpcauth.py
2019-05-09 20:07:22 +00:00
Will Binns
10914b174e
Merge pull request #564 from satwo/patch-1
Specify height/timestamp cutoff for nLockTime
2019-05-09 20:05:30 +00:00
Will Binns
ecbde7c77c
Merge pull request #568 from theStack/maxmoney_unusedvar
max_money.py: use variable start_block_reward (eliminate magic number)
2019-05-09 19:55:45 +00:00
Will Binns
54e3116873
Merge pull request #549 from patstockwell/patch-1
Change 'inputs' to 'outputs'
2019-05-08 20:54:40 +00:00
Will Binns
9acd7a6dd8
Merge pull request #548 from asymmetric/patch-1
Remove "short" from timelock sentence
2019-05-08 20:52:18 +00:00
Will Binns
41aa4e8c4c
Merge pull request #545 from ankona/patch-1
fix double negative typo in example
2019-05-08 20:49:46 +00:00
Will Binns
ee6131abf0
Merge pull request #531 from koshikraj/code-fix
fixed hashlib library error for python3
2019-05-08 20:26:45 +00:00
Will Binns
70ba34d079
Merge pull request #536 from Quuxplusone/numeric-limits
Stop using numeric_limits for the constant "255", and fix a bug.
2019-05-08 13:40:15 +00:00
Will Binns
efb111026f
Merge pull request #539 from Quuxplusone/equals-sign
Revert accidental s/=/==/ in the Bitcoin Whitepaper appendix.
2019-05-08 13:38:15 +00:00
Will Binns
dcb89ad663
Merge pull request #537 from Quuxplusone/berkley
Spelling nit: s/Berkley/Berkeley/
2019-05-08 13:29:13 +00:00
Will Binns
165e2fa2c2
Merge pull request #526 from trulex/patch-1
"program language" -> "programming language"
2019-05-08 13:24:58 +00:00
Will Binns
5785fc9d5d
Merge pull request #521 from kenjiszk/kenjiszk/fix-typo-patch-1
fix segit to segwit
2019-05-08 13:17:10 +00:00
Andreas M. Antonopoulos
7bd15a8a53
Merge pull request #614 from Enegnei/patch-1
Added list of chapter numbers & titles
2018-12-20 20:38:51 -03:00
@J9Roem
0355c51c60
Added list of chapter numbers & titles 2018-12-21 00:32:52 +01:00
Andreas M. Antonopoulos
0cd5f46948 Released 2nd Edition as CC-BY-SA 2018-10-25 17:27:54 -04:00
Andreas M. Antonopoulos
362f0b340f Merge branch 'master' into develop 2018-10-25 16:57:58 -04:00
Andreas M. Antonopoulos
c88b1efe41 Merge branch 'develop' 2018-10-25 16:57:26 -04:00
wintercooled
b997d7cd84 Merge remote-tracking branch 'upstream/develop' into develop 2018-10-21 19:39:58 +01:00
Andreas M. Antonopoulos
df1828b720
Merge pull request #595 from MarcoFalke/Mf18-fixups
ch10: Clarify sequence number for typical tx input
2018-08-21 19:03:17 -06:00
MarcoFalke
f91e539a82 ch10: Clarify sequence number for typical tx input 2018-08-21 20:29:13 -04:00
MarcoFalke
6647b56145 Correct my GitHub handle (CamelCase) 2018-08-21 20:18:57 -04:00
theStack
24fd7bd79b max_money.py: use variable start_block_reward (eliminate magic number) 2018-05-19 09:10:18 -04:00
Samuel B. Atwood
d6ec46403f
Specify height/timestamp cutoff for nLockTime
Changed "If it is above 500 million..." to "If it is greater than or equal to 500 million" to more accurately reflect the protocol spec.
See: https://en.bitcoin.it/wiki/Script#Locktime
2018-05-07 11:49:35 -05:00
wintercooled
b54037cbd6
Fixed broken link to rpcuser.py - is actually rpcauth.py
The correct file and path is rpcauth not rpcuser

https://github.com/bitcoin/bitcoin/blob/master/share/rpcauth/rpcauth.py
2018-05-07 13:40:10 +01:00
Omar Boukli-Hacene
f18d93d18a Normalize and update URL to HTTPS scheme 2018-04-27 09:19:01 +04:00
Patrick Stockwell
d50fdfc720
Change 'inputs' to 'outputs'
Anything value unspent would have to come from an output. 
...uses previously unspent `outputs`, and ...
2018-04-14 23:43:04 +10:00
Lorenzo Manacorda
3a62587d88
Remove "short" from timelock sentence
I think that short provides an unnecessary detail to the explanation. The timelock can be short or long.

Also, in the provided example, the timelock expires after around 7 days, which may or may not be short.
2018-04-14 13:04:11 +02:00
Chris McBride
db6370b735
fix double negative in example
the double negative changes the example output to 13 instead of the expected 7
2018-04-04 17:59:58 -04:00
Arthur O'Dwyer
1a8484b81f Revert accidental s/=/==/ in the Bitcoin Whitepaper appendix.
This looks like a `sed` accident in commit 44eecb1b.
2018-03-26 13:01:22 -07:00
Arthur O'Dwyer
dc1ead7d15 Spelling nit: s/Berkley/Berkeley/ 2018-03-25 20:22:49 -07:00
Arthur O'Dwyer
9504d804e0 Stop using numeric_limits for the constant "255", and fix a bug.
The bug is that `x % 255` is not quite the same thing as `x % 256`;
but `x & 255` is.

The stylistic issue is that `numeric_limits<uint8_t>::max()` is a
very verbose way of spelling `255`.
2018-03-25 20:17:35 -07:00
koshikraj
d70a0f91f2 fixed hashlib library error for python3 2018-03-16 20:32:21 +05:30
kristen@oreilly.com
ab5ae32bae Edited ch07.asciidoc with Atlas code editor 2018-03-15 10:09:31 -07:00
kristen@oreilly.com
ee84b330e5 Updated atlas.json 2018-03-15 09:45:24 -07:00
kristen@oreilly.com
abb074e41e Updated atlas.json 2018-03-15 09:40:43 -07:00
kristen@oreilly.com
76c22db899 Edited colo.html with Atlas code editor 2018-03-15 09:34:21 -07:00
kristen@oreilly.com
bab88e00aa Edited ch07.asciidoc with Atlas code editor 2018-03-15 09:30:29 -07:00
kristen@oreilly.com
8ac54c414b Edited ch04.asciidoc with Atlas code editor 2018-03-15 09:28:26 -07:00
kristen@oreilly.com
bff5117c28 Updated atlas.json 2018-03-14 13:59:32 -07:00
Andreas M. Antonopoulos
f8b883dcd4 Merge branch 'master' into develop 2018-03-14 14:59:36 -05:00
kristen@oreilly.com
6486a74a86 Edited ch07.asciidoc with Atlas code editor 2018-03-14 11:20:39 -07:00
kristen@oreilly.com
b58b819411 Edited copyright.html with Atlas code editor 2018-03-14 11:19:15 -07:00
kristen@oreilly.com
02cf61ecef Edited ch07.asciidoc with Atlas code editor 2018-03-14 11:18:44 -07:00
kristen@oreilly.com
ff3472c3eb Edited ch10.asciidoc with Atlas code editor 2018-03-14 10:59:23 -07:00
kristen@oreilly.com
cd2d1d6c1a Edited ch10.asciidoc with Atlas code editor 2018-03-14 10:58:18 -07:00
kristen@oreilly.com
33d62ab636 Edited ch10.asciidoc with Atlas code editor 2018-03-14 10:55:39 -07:00
kristen@oreilly.com
0e9a423f41 Edited ch10.asciidoc with Atlas code editor 2018-03-14 10:51:34 -07:00
kristen@oreilly.com
9fc3bc2424 Edited ch10.asciidoc with Atlas code editor 2018-03-14 10:45:57 -07:00
kristen@oreilly.com
a68ca9165f Edited ch10.asciidoc with Atlas code editor 2018-03-14 10:42:38 -07:00