forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finished /Contrib Index. Standardized READMEs.
File and Link Fix.
- Loading branch information
Showing
17 changed files
with
102 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
### BitRPC ### | ||
Allows for sending of all standard Bitcoin commands via RPC rather than as command line args. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
### Linearize ### | ||
Construct a linear, no-fork, best version of the blockchain. |
File renamed without changes.
0
contrib/misc/linearize.py → contrib/linearize/linearize.py
100755 → 100644
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### MacDeploy ### | ||
|
||
You will need the appscript package for the fancy disk image creation to work: | ||
|
||
sudo easy_install appscript | ||
|
||
For Snow Leopard (which uses [Python 2.6](http://www.python.org/download/releases/2.6/)), you will need the param_parser package: | ||
|
||
sudo easy_install argparse | ||
|
||
This script should not be run manually, instead, after building as usual: | ||
|
||
make deploy | ||
|
||
During the process, the disk image window will pop up briefly where the fancy | ||
settings are applied. This is normal, please do not interfere. | ||
|
||
When finished, it will produce `Bitcoin-Qt.dmg`. | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
### Qos ### | ||
|
||
This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. It limits outbound TCP traffic with a source or destination port of 8333, but not if the destination IP is within a LAN (defined as 192.168.x.x). | ||
|
||
This means one can have an always-on bitcoind instance running, and another local bitcoind/bitcoin-qt instance which connects to this node and receives blocks from it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
### Seeds ### | ||
|
||
Utility to generate the pnSeed[] array that is compiled into the client | ||
(see src/net.cpp). | ||
(see [src/net.cpp](/src/net.cpp)). | ||
|
||
The 600 seeds compiled into the 0.8 release were created from sipa's DNS seed data, like this: | ||
|
||
curl -s http://bitcoin.sipa.be/seeds.txt | head -1000 | makeseeds.py | ||
curl -s http://bitcoin.sipa.be/seeds.txt | head -1000 | makeseeds.py | ||
|
||
The input to makeseeds.py is assumed to be approximately sorted from most-reliable to least-reliable, | ||
with IP:port first on each line (lines that don't match IPv4:port are ignored). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
### Test Patches ### | ||
|
||
These patches are applied when the automated pull-tester | ||
tests each pull and when master is tested using jenkins. | ||
You can find more information about the tests run at | ||
http://jenkins.bluematt.me/pull-tester/files/ | ||
[http://jenkins.bluematt.me/pull-tester/files/ | ||
](http://jenkins.bluematt.me/pull-tester/files/) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
### TestGen ### | ||
|
||
Utilities to generate test vectors for the data-driven Bitcoin tests. | ||
|
||
Usage: | ||
|
||
gen_base58_test_vectors.py valid 50 > ../../src/test/data/base58_keys_valid.json | ||
gen_base58_test_vectors.py invalid 50 > ../../src/test/data/base58_keys_invalid.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
### Verify SF Binaries ### | ||
This script attempts to download the signature file `SHA256SUMS.asc` from SourceForge. | ||
|
||
It first checks if the signature passes, and then downloads the files specified in | ||
the file, and checks if the hashes of these files match those that are specified | ||
in the signature file. The script returns 0 if everything passes the checks. It returns 1 if either the | ||
signature check or the hash check doesn't pass. If an error occurs the return value is 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
### Wallet Tools ### | ||
Contains a wallet change password and unlock script. |