@@ -46,14 +46,14 @@ corresponding Satoshi C++ code uses the same naming conventions: CTransaction,
4646CBlockHeader, nValue etc. Otherwise Python naming conventions are followed.
4747
4848
49- # Mutable vs. Immutable objects
49+ ## Mutable vs. Immutable objects
5050
5151Like the Bitcoin Core codebase CTransaction is immutable and
5252CMutableTransaction is mutable; unlike the Bitcoin Core codebase this
5353distinction also applies to COutPoint, CTxIn, CTxOut, and CBlock.
5454
5555
56- # Endianness Gotchas
56+ ## Endianness Gotchas
5757
5858Rather confusingly Bitcoin Core shows transaction and block hashes as
5959little-endian hex rather than the big-endian the rest of the world uses for
@@ -63,7 +63,7 @@ accomodate this. In addition see b2x() and b2lx() for conversion from bytes to
6363big/little-endian hex.
6464
6565
66- # Module import style
66+ ## Module import style
6767
6868While not always good style, it's often convenient for quick scripts if import
6969* can be used. To support that all the modules have __ all__ defined
@@ -82,7 +82,7 @@ Also see dust-b-gone for a simple example of Bitcoin Core wallet interaction
8282through the RPC interface: https://github.com/petertodd/dust-b-gone
8383
8484
85- # Selecting the chain to use
85+ ## Selecting the chain to use
8686
8787Do the following:
8888
@@ -94,7 +94,7 @@ selected is a global variable that changes behavior everywhere, just like in
9494the Satoshi codebase.
9595
9696
97- # Unit tests
97+ ## Unit tests
9898
9999Under bitcoin/tests using test data from Bitcoin Core. To run them:
100100
@@ -119,7 +119,7 @@ skipped):
119119
120120HTML coverage reports can then be found in the htmlcov/ subdirectory.
121121
122- # Documentation
122+ ## Documentation
123123
124124Sphinx documentation is in the "doc" subdirectory. Run "make help" from there
125125to see how to build. You will need the Python "sphinx" package installed.
0 commit comments