Why is tx fee so high right now? Shouldn't it also be proportional to net hashrate or something like that?
Good suggestion! Will be added to to-do list for next update.
UPDATE: P2POOL CRASH HAS BEEN RESOLVEDsyncoin,
There still is a bug in the file:
https://github.com/syncoin-project/syncoin/blob/master/p2pool_files/p2pool_networks.pyUnder the syncoin entry it reads:
BOOTSTRAP_ADDRS=''.split('24.51.213.165'),
And that should be:
BOOTSTRAP_ADDRS='24.51.213.165'.split(' '),
Possibly with a few extra bootstrap addresses. Note the space in split(' ').
After that you can set PERSIST=True.