doc/CONFIG.rdoc in bitcoin-ruby-0.0.1 vs doc/CONFIG.rdoc in bitcoin-ruby-0.0.2
- old
+ new
@@ -4,13 +4,13 @@
== Locations
There are 3 default locations where configfiles are loaded from:
-* +/etc/bitcoin-ruby.yml+
-* +~/.bitcoin-ruby.yml+
-* +./bitcoin-ruby.yml+
+* /etc/bitcoin-ruby.yml
+* ~/.bitcoin-ruby.yml
+* ./bitcoin-ruby.yml
Files are loaded in order (if they exist) and override each others settings.
To specify a different config file use the +--config+ option.
@@ -40,11 +40,11 @@
all:
network: bitcoin # network identifier ("bitcoin" or "testnet")
command: "127.0.0.1:9999" # IP:Port to listen for incomming command connections
listen: "0.0.0.0:8332" # IP:Port to listen for incoming peer connections
connect: "" # List of IP:Port,IP:Port of nodes to connect to
- storage: "sequel::sqlite://bitcoin.db" # storage backend to use (see STORAGE)
+ storage: "sequel::sqlite://~/.bitcoin-ruby/<network>/blocks.db" # storage backend to use (see STORAGE)
node:
headers_only: false # download/store only block headers (experimental)
dns: true # query peers from dns server
epoll: false
epoll_limit: 10000
@@ -61,6 +61,6 @@
queue: 5 # work storage queue
inv_queue: 5 # work inventory queue
addrs: 15 # collect new peer addrs
connect: 30 # connect to new peers
wallet:
- keystore: "simple::file=~/.bitcoin-ruby/keys.json" # keystore to use
+ keystore: "simple::file=~/.bitcoin-ruby/<network>/keys.json" # keystore to use
\ No newline at end of file