GO HOME YOU ARE DRUNK . Too much premine ! 3% . This is a SCAM !
Go home, you're an ignoramus.
Yak, what is your problem with mintpal? It's much better than shitty cryptorush (it's down now again BTW). A week ago 20.000 votes were enough to be there, but there was no unequivocal response or reaction from devs as far as I remember.
i believe i said my problem multiple times on multiple posts in this thread.
in essence the way mintpal and other bribevote exchanges are set up, you are bribing 'devs' to add a coin that takes literally 5 minutes to add to the exchange, it sets up for adding coins that are just going to be pump and dumped.
here is how it goes:
you make a coin, (in the most recent cases either a meme based coin or a celebrity likeness coin) you then pay a site like mintpal to have it listed (as in the case of the last 5 coins added by mintpal having each over 1000-2000$usd in votes) and then you dump them.. thats whats been happening, thats not really good for the users, the crypto community or anyone, except of course the exchanges and the original pumpers/dumpers
edit: i guess i should clear it up, i have no problem with mintpal from a 'technological' standpoint... their exchange seems to not be down as much as cryptorush, my issues are from an ethical standpoint.
OK, one more question. There were 4 devs after taking FCK over. Which of them are active and with us at the moment?
there technically are more than 4 'devs' now, as far as the most active that would likely be syntaks who is doing the work with adding some new features to the wallet itself (features no other crypto has built in), i'm currently the one designing the new website, lava is working on the tip bots
as far as 'with us' i'm not sure what that means, but feel free to go into irc and talk with anyone of the group, if you have any ideas or anything
edit: this is a community project, if you have any experience with any of that stuff feel free to join in
Just a quick note for the devs, during the latest sourcecode update someone changed the 'fckbankscoin address' in rpcdump.cpp to 'fckbankscoinaddress' but the p2pool config published on Rav3nPL still has the old version in networks.py, took me half a day to figure that one out because p2pool kept giving me the finger with an rpc port error
I'm not quite sure what you mean exactly
, but you are looking for this probably:
https://github.com/fckbankscoin/p2pool-ravi put in a pull request to raven but he still hasnt merged it.... so for the meantime that is the correct p2pool source until they do
is that what you mean?
Yes that's the config, but in bitcoin/networks.py there is this part:
fckbankscoin=math.Object(
P2P_PREFIX='fcd9b7dd'.decode('hex'), #stripped from fckbankscoind's main.cpp -> pchMessageStart[4] = { 0xfc, 0xd9, 0xb7, 0xdd };
P2P_PORT=21779, #fckbankscoind 's p2p port
ADDRESS_VERSION=36, #look again in the sourcecode in the file base58.h, and find the value of PUBKEY_ADDRESS.
RPC_PORT=21778, #fckbankscoind 's rpc port
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'
fckbankscoin address' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 100000*100000000 >> (height + 1)//100000,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=60, # one block generation time
SYMBOL='FCK',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'fckbankscoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/fckbankscoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.fckbankscoin'), 'fckbankscoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='
http://fckexplorer.hashattack.com:8080/block/',
ADDRESS_EXPLORER_URL_PREFIX='
http://fckexplorer.hashattack.com:8080/address/',
TX_EXPLORER_URL_PREFIX='
http://fckexplorer.hashattack.com:8080/tx/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), #??
DUMB_SCRYPT_DIFF=2**16, #??
DUST_THRESHOLD=0.03e8, #??
),
and if you check the new fckbankscoin sourcecode, specifically the file rpcdump.cpp there is this part near the bottom:
if (fHelp || params.size() != 1)
throw runtime_error(
"dumpprivkey <
fckbankscoinaddress>\n"
"Reveals the private key corresponding to
.");
Those 2 have to match otherwise p2pool does not work, I only discovered this after the powersurge that hit my server last monday and was unable to restart fck p2pool while all others worked, the error it kept giving didn't offer any clue to what was wrong until I found this bit after going through nearly all lines of code