I'm confused what I use for the IDENTIFER and P2P_IDENTIFIER values in networks.py, etc
From what i understand, it is the identifer for p2pool to talk to other p2pool. So this can be whatever you like. Just do some small changes on it.
Thanks, getting closer. Would you have an idea what to use for the following 3 things?:
SUBSIDY_FUNC=lambda target: get_subsidy(6, 100, target),
BLOCK_PERIOD=600, # s
SANE_TARGET_RANGE=(2**256//2**20//1000 - 1, 2**256//2**20 - 1),
I looked at what CHNCoin had set for theirs (from a post that you made) and these were all tweaked. Most likely need to be tweaked for bitbar as well. I know we probably need to do something about SUBSIDY_FUNC.
And then, also verifying that the following are ok for bitbar (from p2pool/networks):
SHARE_PERIOD=30, # seconds
CHAIN_LENGTH=24*60*60//30, # shares
REAL_CHAIN_LENGTH=24*60*60//30, # shares
TARGET_LOOKBEHIND=200, # shares
SPREAD=3, # blocks
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
I tried looking through the bitbar source but I'm not sure which ones of these have a match over there, and which ones are p2ppool things (a few simple "grep -R"s didn't help out much).