Format,pluribusunum
_beginpeers
http://galaxies.mygamesonline.org/receiver.csv
https://raw.github.com/Unthinkingbit/charity/master/receiver.csv
http://devcoinblockexplorer.info/receiver/receiver.csv
http://devtome.com/files/receiver.csv
http://devcoin.darkgamex.ch/receiver.csv
_endpeers
_begincoins
1NKKQBSaQ6XMViwC46b4JCxGUiUp6EDZR5
1NtTPVVjDsUfDWybS4BwvHpG2pdS9RnYyQ
1PWC7PNHL1SgvZaN7xEtygenKjWobWsCuf
112NRCenwi3VTS9GMuW1kgnAKFGjE9YymR,121Pb2BBrU7C61vBdWCKVuFFmaEZr6xFAX,121Pb2BBrU7C61vBdWCKVuFFmaEZr6xFAX,18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr,18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr
18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr,18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr,18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr,18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr,1FCJgGYirQ4w2uA3rcE2zwVnD8LVwm8fbB
1Fhex5BvBGaChJqK75Z6MPxtK9muSsScKC
1Fhex5BvBGaChJqK75Z6MPxtK9muSsScKC,1K3kn5xoQfyCnzgaFNTLLpVQBdRVpwwgNx,1NGCrVaFXanWib44ijNBR8yBoCAREGpXro,1NGCrVaFXanWib44ijNBR8yBoCAREGpXro
1NGCrVaFXanWib44ijNBR8yBoCAREGpXro
121Pb2BBrU7C61vBdWCKVuFFmaEZr6xFAX
126VZtqifE91nrBsXRkjZRMkTTvSTEMHPC
17vec4jQGCzMEsTnivizHPaowE715tu2CB
17vec4jQGCzMEsTnivizHPaowE715tu2CB
18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr
18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr
18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr
18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr
18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr
18HfzUZXGA3FZ1BM8abEmjBT9Wg52qQ4Sr
1ABvQwiuCnySQqBzruaAcdrkgYae9LoqWz
1ARVXWVKGPPYPVVwT1Fmy8UzVDSvNe6anh
1Ahu957fXXwhJ5LqmpxMFHVWwSQ7h4PkXb
1Ahu957fXXwhJ5LqmpxMFHVWwSQ7h4PkXb
1B2fZN58SD4JqaTitHmBLcSo89GfUtvWZ3
1DbeWKCxnVCt3sRaSAmZLoboqr8pVyFzP1
1HNeqi3pJRNvXybNX4FKzZgYJsdTSqJTbk
1JBMattRztKDF2KRS3vhjJXA7h47NEsn2c
1KHAL8bUjnkMRMg9yd2dNrYnJgZGH8Nj6T
1MbRAfeayy7bYfJ8yBVKTt41nyiGhVAz62
_endcoins
Yet your recent post in devcoin thread seemed to say I am to get 12 shares for word count in this round, I do not see 12 shares in this generated file.
This is the script I use, I believe you said you also copied it to a wiki somewhere:
#!/bin/bash
round=$1
if [ "${round}x" == "x" ]; then
echo 'USAGE: bountyproc.sh'
echo 'where ROUND is the number of the round to process.'
exit 1
fi
# It's time to generate the round 7 receiver file. An example procedure is on the wiki at:
# http://devtome.org/wiki/index.php?title=Devcoin#Generating_the_Files
# and the procedure for round 7 follows below.
# First please download the latest version of:
rm -f bitcoinshare.html
wget https://raw.github.com/Unthinkingbit/charity/master/bitcoinshare.html
rm -f devcoinshare.html
wget https://raw.github.com/Unthinkingbit/charity/master/devcoinshare.html
rm -f peer.csv
wget https://raw.github.com/Unthinkingbit/charity/master/peer.csv
rm -f bounty_${round}.csv
wget https://raw.github.com/Unthinkingbit/charity/master/bounty_${round}.csv
rm -f account.py
wget https://raw.github.com/Unthinkingbit/charity/master/account.py
rm -f almoner.py
wget https://raw.github.com/Unthinkingbit/charity/master/almoner.py
# Then in that folder open a terminal and type:
python account.py -input bounty_${round}.csv
If the script is not doing everything it should, for how many rounds has it been skipping something it should have been doing, I wonder...
-MarkM-