Pages:
Author

Topic: [ANN][CRC] Craftcoin - Portable Minecraft Game Currency w. Economy Plugin - page 36. (Read 92271 times)

legendary
Activity: 1270
Merit: 1000
I'm getting stuck at the weirdest place right now...cant figure it out. Have gone over everything multiple times. It states that the check failed connecting to the RPC port.
Have verified and confirmed the correct ports. ANY ideas?

Code:
 craftcoin=math.Object(
        P2P_PREFIX='fcd9b7dd'.decode('hex'),
        P2P_PORT=12124,
        ADDRESS_VERSION=57,
        RPC_PORT=12123,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'craftcoin address' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        ....

Wow...you mean the only thing I was missing was the space between craftcoin and address?! Thank you so much!
sr. member
Activity: 1638
Merit: 251
Hexhash.xyz
Care to explain why the client uses 75% CPU?

It doesn't, unless something else is wrong with your system. Or you're mining.



Errrr yes it does.
And its not my first time run and its not my rig trust me. I have tried on my others. Plus i'm pool mining and only realized when a temp warning came up when opening client I investigated.

full member
Activity: 156
Merit: 100
I have a few servers and I'd be interested in lending a hand test wise if you're open to passing the server plugin file.


PM sent
sr. member
Activity: 420
Merit: 250
Care to explain why the client uses 75% CPU?

maybe you are running first time that why use alot of cpu.
full member
Activity: 168
Merit: 100
Captain Jack Fenderson
Care to explain why the client uses 75% CPU?

It doesn't, unless something else is wrong with your system. Or you're mining.
PSL
member
Activity: 166
Merit: 10
I'm getting stuck at the weirdest place right now...cant figure it out. Have gone over everything multiple times. It states that the check failed connecting to the RPC port.
Have verified and confirmed the correct ports. ANY ideas?

Code:
 craftcoin=math.Object(
        P2P_PREFIX='fcd9b7dd'.decode('hex'),
        P2P_PORT=12124,
        ADDRESS_VERSION=57,
        RPC_PORT=12123,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'craftcoin address' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        ....
hero member
Activity: 735
Merit: 501
I have a few servers and I'd be interested in lending a hand test wise if you're open to passing the server plugin file.
legendary
Activity: 1843
Merit: 1338
XXXVII Fnord is toast without bread
give me please
settings Craftcoin.conf for solo

daemon=1
server=1
rpcuser=username
rpcpassword=password
rpcallowip=127.0.0.1
rpcport=12123
port=12124
gen=0

addnode=113.162.172.225
addnode=118.93.143.35
addnode=173.247.28.4
addnode=198.199.75.252
addnode=207.68.215.202
addnode=207.68.220.150
addnode=24.72.62.253
addnode=42.115.18.144
addnode=50.116.22.43
addnode=62.163.9.155
addnode=64.188.167.211
addnode=65.167.153.115
addnode=65.167.153.125
addnode=67.193.198.104
addnode=70.98.114.229
addnode=70.98.114.237
addnode=70.98.114.238
addnode=72.223.118.8
addnode=77.7.2.210
addnode=83.138.220.9
full member
Activity: 168
Merit: 100
Captain Jack Fenderson
Its an interesting concept, but it does have a lot of things that do worry me.
On the note of the plugin; does it hook into Vault?  If it doesn't, you're going to need
A LOT of dev work to get it to have many useful plugins economy wise.

Yeah, as I've mentioned earlier, the plugin is best used with Vault and Satellite Trade.

give me please
settings Craftcoin.conf for solo

Try reading the thread mate, everythings available in the first 3 comments.
hero member
Activity: 684
Merit: 529
give me please
settings Craftcoin.conf for solo
full member
Activity: 156
Merit: 100
Its an interesting concept, but it does have a lot of things that do worry me.
On the note of the plugin; does it hook into Vault?  If it doesn't, you're going to need
A LOT of dev work to get it to have many useful plugins economy wise.

Yes, it hooks to vault. It should be compatible with any plugins that use vault.

That being said we are looking for some help with that right now. If you know vault and have plugin experience.
hero member
Activity: 735
Merit: 501
Its an interesting concept, but it does have a lot of things that do worry me.
On the note of the plugin; does it hook into Vault?  If it doesn't, you're going to need
A LOT of dev work to get it to have many useful plugins economy wise.
full member
Activity: 168
Merit: 100
Captain Jack Fenderson
--bitcoind-address should be pointing at the IP that craftcoin is running on, which would be 127.0.0.1 if you're running it from the same system. 192.168.1.1 is almost always a router, so I doubt that's where you meant to connect to.

Wish that was it...replaced the IP in the example to mask the internal network. It's making the connection but failing the check. Should have made it 127.0.0.1 to not cause confusion :/

Edited the original post.

Is the craftcoin daemon running in server mode?
legendary
Activity: 1270
Merit: 1000
--bitcoind-address should be pointing at the IP that craftcoin is running on, which would be 127.0.0.1 if you're running it from the same system. 192.168.1.1 is almost always a router, so I doubt that's where you meant to connect to.

Wish that was it...replaced the IP in the example to mask the internal network. It's making the connection but failing the check. Should have made it 127.0.0.1 to not cause confusion :/

Edited the original post.
full member
Activity: 168
Merit: 100
Captain Jack Fenderson
I'm getting stuck at the weirdest place right now...cant figure it out. Have gone over everything multiple times. It states that the check failed connecting to the RPC port!?
Have verified and confirmed the correct ports. ANY ideas?


--bitcoind-address 192.168.1.1 --bitcoind-rpc-port 12123 --bitcoind-p2p-port 12124


2013-07-06 20:29:06.548000 p2pool (version 11.4)
2013-07-06 20:29:06.548000
2013-07-06 20:29:06.548000 Testing bitcoind RPC connection to 'http://192.168.1.1:12123/' with username 'xxx'...
2013-07-06 20:29:06.548000 >     Check failed! Make sure that you're connected to the right bitcoind with --bitcoind-rpc-port!


bitcoin/networks.py:
        P2P_PORT=12124,
        RPC_PORT=12123,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'craftcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']



--bitcoind-address should be pointing at the IP that craftcoin is running on, which would be 127.0.0.1 if you're running it from the same system. 192.168.1.1 is almost always a router, so I doubt that's where you meant to connect to.
legendary
Activity: 1270
Merit: 1000
I'm getting stuck at the weirdest place right now...cant figure it out. Have gone over everything multiple times. It states that the check failed connecting to the RPC port.
Have verified and confirmed the correct ports. ANY ideas?


--bitcoind-address 127.0.0.1 --bitcoind-rpc-port 12123 --bitcoind-p2p-port 12124


2013-07-06 20:29:06.548000 p2pool (version 11.4)
2013-07-06 20:29:06.548000
2013-07-06 20:29:06.548000 Testing bitcoind RPC connection to 'http://127.0.0.1:12123/' with username 'xxx'...
2013-07-06 20:29:06.548000 >     Check failed! Make sure that you're connected to the right bitcoind with --bitcoind-rpc-port!


bitcoin/networks.py:
        P2P_PORT=12124,
        RPC_PORT=12123,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'craftcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']

full member
Activity: 168
Merit: 100
Captain Jack Fenderson
reward of block 10.5 ?

Yeah, that would be the standard 10CRC reward + fees of the transactions sent through that block.
sr. member
Activity: 296
Merit: 250
Hey thanks!

Nice to wake up in the morning, check the yield, and think that my GPUs have gone hypersonic!?!

But it was just one generous donation by the CRC team! Wink
sr. member
Activity: 294
Merit: 250
just set up the craftcoin pool at https://crc.epools.org
everything as usual: 1.5% pool fee, PPLNS & stability
drop in, help to spread the hash rate!

i help u with one small rig a few hours to start.

1st block found by: captainfuture  Tongue

reward of block 10.5 ?
newbie
Activity: 30
Merit: 0
Pages:
Jump to: