Skip to content

Commit 4b05213

Browse files
committed
Make README.md headers smaller because nicer looking.
1 parent 2d11e0c commit 4b05213

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ corresponding Satoshi C++ code uses the same naming conventions: CTransaction,
4646
CBlockHeader, nValue etc. Otherwise Python naming conventions are followed.
4747

4848

49-
# Mutable vs. Immutable objects
49+
## Mutable vs. Immutable objects
5050

5151
Like the Bitcoin Core codebase CTransaction is immutable and
5252
CMutableTransaction is mutable; unlike the Bitcoin Core codebase this
5353
distinction also applies to COutPoint, CTxIn, CTxOut, and CBlock.
5454

5555

56-
# Endianness Gotchas
56+
## Endianness Gotchas
5757

5858
Rather confusingly Bitcoin Core shows transaction and block hashes as
5959
little-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
6363
big/little-endian hex.
6464

6565

66-
# Module import style
66+
## Module import style
6767

6868
While 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
8282
through 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

8787
Do the following:
8888

@@ -94,7 +94,7 @@ selected is a global variable that changes behavior everywhere, just like in
9494
the Satoshi codebase.
9595

9696

97-
# Unit tests
97+
## Unit tests
9898

9999
Under bitcoin/tests using test data from Bitcoin Core. To run them:
100100

@@ -119,7 +119,7 @@ skipped):
119119

120120
HTML coverage reports can then be found in the htmlcov/ subdirectory.
121121

122-
# Documentation
122+
## Documentation
123123

124124
Sphinx documentation is in the "doc" subdirectory. Run "make help" from there
125125
to see how to build. You will need the Python "sphinx" package installed.

0 commit comments

Comments
 (0)