hey i was looking for a bit of help with my fuelcoin p2pool just wanted to make sure i had everything setup correctly. i am connected and have everything going

so that is no longer an issue. i just want to make sure my values are correct.
p2pool file
fuelcoin=math.Object(
PARENT=networks.nets['fuelcoin'],
SHARE_PERIOD=6, # seconds
CHAIN_LENGTH=6*60*60//10, # shares
REAL_CHAIN_LENGTH=7*24*60*60//10, # shares
TARGET_LOOKBEHIND=200, # shares
SPREAD=60, # blocks
IDENTIFIER='fc70035c7a81bc6f'.decode('hex'),
PREFIX='2472ef181efcd37b'.decode('hex'),
P2P_PORT=9111,
MIN_TARGET=0,
MAX_TARGET=2**256//2**32 - 1,
PERSIST=False,
WORKER_PORT=9222,
BOOTSTRAP_ADDRS='98.174.25.28 173.230.51.38 173.230.49.15 173.79.134.197'.split(' '),
ANNOUNCE_CHANNEL='#p2pool',
VERSION_CHECK=lambda v: True,
VERSION_WARNING=lambda v: 'Upgrade Fuelcoin to >=0.8.5!' if v < 80500 else None,
bitcoin file
fuelcoin=math.Object(
P2P_PREFIX='f5d3a3d0'.decode('hex'),
P2P_PORT=9111,
ADDRESS_VERSION=36,
RPC_PORT=9222,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'FuelCoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//840000,
POW_FUNC=data.hash256,
BLOCK_PERIOD=30, # s
SYMBOL='FUEL',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Fuelcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Fuelcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.fuelcoin'), 'fuelcoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='
http://explorer.litecoin.net/block/',
ADDRESS_EXPLORER_URL_PREFIX='
http://explorer.litecoin.net/address/',
TX_EXPLORER_URL_PREFIX='
http://explorer.litecoin.net/tx/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF=1,
DUST_THRESHOLD=0.03e8,
),
I am also having problems with the pool showing blocks that were not mined by any of the miners on the pool.
and the pool hashrate has continued to rise past 3th/s when i only have 1th/s on it.
the address is
http://99.236.215.227:9222/static/ it seems to be a bit more accurate now. but still not great ive changed the settings around a bit. for the share per second trying to play with it.