Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrjamy committed Jan 24, 2019
1 parent f307943 commit b9f4b31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions contrib/bitrpc/bitrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@


if rpcpass == "":
access = ServiceProxy("http://127.0.0.1:51473")
access = ServiceProxy("http://127.0.0.1:21473")
else:
access = ServiceProxy("http://"+rpcuser+":"+rpcpass+"@127.0.0.1:51473")
access = ServiceProxy("http://"+rpcuser+":"+rpcpass+"@127.0.0.1:21473")
cmd = sys.argv[1].lower()

if cmd == "backupwallet":
Expand All @@ -22,7 +22,7 @@
print access.backupwallet(path)
except:
print "\n---An error occurred---\n"

elif cmd == "encryptwallet":
try:
pwd = getpass.getpass(prompt="Enter passphrase: ")
Expand Down
3 changes: 2 additions & 1 deletion contrib/seeds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ and remove old versions as necessary.

The seeds compiled into the release are created from fuzzbawls' DNS seed data, like this:

curl -s http://seeder.fuzzbawls.pw/adcoin-mainnet.txt > seeds_main.txt
<!-- TODO: create an adcoin seeder -->
curl -s http://seeder.fuzzbawls.pw/pivx-mainnet.txt > seeds_main.txt
python3 makeseeds.py < seeds_main.txt > nodes_main.txt
python3 generate-seeds.py . > ../../src/chainparamsseeds.h

Expand Down

0 comments on commit b9f4b31

Please sign in to comment.