Create a "Testing Applications" subsection in devel-examples

Move existing "regtest / testnet" texts to the new subsection and link to it
Move Bitcoin Core setup instructions in devel-examples
Add a consistent introduction for devel-(guide/ref/examples)
Fix autocrossref.rb to not add links inside {% highlight %} code blocks
This commit is contained in:
Saivann 2014-06-12 18:38:09 -04:00
parent 8a5db84a80
commit ffed3c2529
12 changed files with 187 additions and 125 deletions

View file

@ -101,8 +101,6 @@ Nolan provided the following example encoding algorithm to the Bitcoin
Wiki [Base58Check
encoding](https://en.bitcoin.it/wiki/Base58Check_encoding) page:
{% endautocrossref %}
{% highlight c %}
code_string = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
x = convert_bytes_to_big_integer(hash_result)
@ -123,8 +121,6 @@ repeat(number_of_leading_zero_bytes_in_hash)
output_string.reverse();
{% endhighlight %}
{% autocrossref %}
Bitcoin's own code can be traced using the [base58 header
file][core base58.h].