Pages:
Author

Topic: CREDITS [CRE] | SHA256 | SIDECHAIN | NEW BLOCK-DEPOSIT FEATURE | OFFICIAL THREAD - page 40. (Read 57384 times)

member
Activity: 81
Merit: 1002
It was only the wind.
Nodes? After a half dozen tries, I successfull transplanted the BTC chain, but the Credits chain isn't coming.

Have you tried:
a) checking the log via Help > Credits debug window > Information > Debug log file > Open. If there is output coming there the Credits blockchain is probably downloading.
b) Restarting the client. I've seen situations where the Credits blocks doesn't start to download until a restart, probably due to timeout of the Credit nodes waiting for the Bitcoin blockchain download.

You could also check Help > Credits Debug Window > Peers and see if you are connected to peers.

Restarted it loads of times, and I am connected to peers, but I don't seem to be exchanging more than a few KB from them.

Strange, have you checked the debug.log output? If there are log output coming it is probably synching the Credits blockchain. Unfortunately the ui seems to be lagging quite a bit on the initial blockchain download. debug.log is where to look if you want to know what is really happening. Do you know where to find it and could you send me a sample of the end of it?

Near the top is of interest:

Code:
2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!

Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin.

There appears to be inconsistencies in the internal state between the blockchains. That's a problem.

There is no way to correct that, without restarting the client with the argument -reindex, and that reindex is going to take a long time.

If you didn't do that before, I suggest you initialise from this pre-updated torrent.
http://credits-currency.org/viewtopic.php?f=18&t=517

And which version are you running?

I ran latest git, when that didn't work, compiled v0.9.1.30-g7605e64-beta and went with that. I'll reindex.

Ok, you are a bit out on a ledge here since running from the builds hasn't been very thoroughly tested. I would still recommend the torrent file, but go ahead and try a reindex if you want to. I'll give any support I can.

Reindex appears to be working. Just... you know, slowly. Tongue
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]
Well Im seeding away for you guys, too bad i couldn't upload this to sharecash it would be faster for everyone and I would make a few $ on the side. Cheesy

Up and running with a miner?
member
Activity: 81
Merit: 1002
It was only the wind.
"Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin."

To add to that, I am not aware of the implementation details of GPU miners and ASICs but have a feeling that they are only moving one specific part of the mining process to specialised hardware. If that is the case, it shouldn't be to difficult to retrofit the Credits source code to run with a GPU/ASIC.

I have studied pretty much every GPU mining OpenCL kernel out there, and improved almost all of them - believe me, SHA256d is EXTREMELY well done, and it takes full advantage of the known 80-byte input. ASICs I don't work with often, but I do know that they accept data and a target, then return nonces. For the hardware to be better optimized, the hardware implementation would have to take advantage of the known input size as well - I'm almost certain this is the case.

When you are saying the 80-byte input, are you saying that they take the whole header of a block and hash over that? I assumed that only the final sha256, after the midstate has been calculated, was input to the GPU. The header of a Credits block is rather different from a header of a Bitcoin block. BUT, it does the same rounds of midstate calculations, but some more of them, since the header is larger in size.
http://credits-currency.org/viewtopic.php?f=24&t=635



You're right, I was actually thinking of other algos when I said that - the midstate is what they use... meaning... GPU implementations may be adaptable, but I don't think ASICs will be. However, those GPU implementations are optimized for VLIW5/VLIW4 last I checked.
sr. member
Activity: 560
Merit: 300
Unprofessional shitcoin trader since 2011
Well Im seeding away for you guys, too bad i couldn't upload this to sharecash it would be faster for everyone and I would make a few $ on the side. Cheesy
legendary
Activity: 1358
Merit: 1003
Designer - Developer
Credits (CRE) official chat

Just letting everyone know that the IRC channel #CreditsCurrency has been setup on freenode.net to be the Credits (CRE) Official Chat.
This has been set up with Gabriel's permission and is to be used for matter related to Credits (CRE) and its development and use.

If you have any questions or would like to get involved please stop in and say hello.
(If anyone knows how I can link a web based IRC client configured to go there please let me know!)
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]
I'm totally not sure about this, but there may be a bug - I think the code is looking for Bitcoin block 0... isn't the genesis block not stored? I remember reading something about it must be manually input in Abe because it's not in the copy of the chain on disk.

The genesis block is stored BUT NOT in the chainstate db. This is probably what you are referring to. Did you get the same problem again?

In that case, there may be a bug. I actually think I know what the problem is in that case - the genesis block of Credits has the genesis block of Bitcoin as it's linked Bitcoin block. Adding the Credits block may therefore be an exceptional case. It's just strange that this hasn't occurred when I've done test syncs. The error could possibly have been added in the last release.

Could you send me the first Credits block, or the Credits chain, if it's small? This bootstrap torrent is stalling a lot, slow when it does work, and I don't need the BTC chain.

Sure, I can send you the blocks directory only for Credits, it's probably doable by mail. Address?

My apologies for the extra work you've been having.
member
Activity: 81
Merit: 1002
It was only the wind.
Nodes? After a half dozen tries, I successfull transplanted the BTC chain, but the Credits chain isn't coming.

Have you tried:
a) checking the log via Help > Credits debug window > Information > Debug log file > Open. If there is output coming there the Credits blockchain is probably downloading.
b) Restarting the client. I've seen situations where the Credits blocks doesn't start to download until a restart, probably due to timeout of the Credit nodes waiting for the Bitcoin blockchain download.

You could also check Help > Credits Debug Window > Peers and see if you are connected to peers.

Restarted it loads of times, and I am connected to peers, but I don't seem to be exchanging more than a few KB from them.

Strange, have you checked the debug.log output? If there are log output coming it is probably synching the Credits blockchain. Unfortunately the ui seems to be lagging quite a bit on the initial blockchain download. debug.log is where to look if you want to know what is really happening. Do you know where to find it and could you send me a sample of the end of it?

Near the top is of interest:

Code:
2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!

Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin.

There appears to be inconsistencies in the internal state between the blockchains. That's a problem.

There is no way to correct that, without restarting the client with the argument -reindex, and that reindex is going to take a long time.

If you didn't do that before, I suggest you initialise from this pre-updated torrent.
http://credits-currency.org/viewtopic.php?f=18&t=517

And which version are you running?

I ran latest git, when that didn't work, compiled v0.9.1.30-g7605e64-beta and went with that. I'll reindex.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]
I'm totally not sure about this, but there may be a bug - I think the code is looking for Bitcoin block 0... isn't the genesis block not stored? I remember reading something about it must be manually input in Abe because it's not in the copy of the chain on disk.

The genesis block is stored BUT NOT in the chainstate db. This is probably what you are referring to. Did you get the same problem again?

In that case, there may be a bug. I actually think I know what the problem is in that case - the genesis block of Credits has the genesis block of Bitcoin as it's linked Bitcoin block. Adding the Credits block may therefore be an exceptional case. It's just strange that this hasn't occurred when I've done test syncs. The error could possibly have been added in the last release.
member
Activity: 81
Merit: 1002
It was only the wind.
"Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin."

To add to that, I am not aware of the implementation details of GPU miners and ASICs but have a feeling that they are only moving one specific part of the mining process to specialised hardware. If that is the case, it shouldn't be to difficult to retrofit the Credits source code to run with a GPU/ASIC.

I have studied pretty much every GPU mining OpenCL kernel out there, and improved almost all of them - believe me, SHA256d is EXTREMELY well done, and it takes full advantage of the known 80-byte input. ASICs I don't work with often, but I do know that they accept data and a target, then return nonces. For the hardware to be better optimized, the hardware implementation would have to take advantage of the known input size as well - I'm almost certain this is the case.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]

All I want is a correct data parameter from getwork - I couldn't care less about the midstate at this point. If you've got the correct hash for it, making it a test vector, that'd be even better.

Ok, problem is that the buffer right now is too small, have a look in rpcmining.cpp
Code:
        // Pre-build hash buffers
        char pmidstate[32];
        char pdata[128];
        char phash1[64];
        FormatHashBuffers(pblock, pmidstate, pdata, phash1);

I would have to recompile the client and verify that the values coming out are indeed correct. Probably won't be able to do that until you are finished with your dl/reindex.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]

Well, while I'm sitting here waiting, it'd be great if you'd give me the output of getwork to look over. Works from the debug console.

{
"midstate" : "c25d21dfba0c7ddff059ec94ca5b04b1982845ff5c1a48f9fa98f1f6c2653ea8",
"data" : "000000016f05e1c9f096b3fbe2cd3d8b8deda68a76e90391d63f41d70852a3aa00000000a9c1fef 85cb9855993d257d2215609c3bfef14ed6c56f152a37782c3ff528d0bc68abbc4952d5b1f15cff4 80435a25667375de69037bec410000000000000000ced3fa32fe3b8f390c2687ce3a9728a999654 95fecf077eb08d854f5",
"hash1" : "0000000000000000000000000000000000000000000000000000000000000000000000800000000 0000000000000000000000000000000000000000000010000",
"target" : "0000000000000000000000000000000000000000000000000005850b00000000"
}

I would take the info in here with a LARGE grain of salt because getwork hasn't been updated or verified to work after release. Coin still to young and other areas have had more focus. There are comments specifically for this function in the code that it will be reviewed and probably not work for the moment.

But if you want some other specifics I could probably give it to you.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]

Ok, you are a bit out on a ledge here since running from the builds hasn't been very thoroughly tested. I would still recommend the torrent file, but go ahead and try a reindex if you want to. I'll give any support I can.

Reindex appears to be working. Just... you know, slowly. Tongue

Yeah, hope so. The critical part is (unfortunately) when you change from Bitcoin blockchain reindex to Credits blockchain reindex. That's when the chainstate keeping track of the in-between Credits and Bitcoin state might get messed up.

Still not reconsidering dl'ing the torrent?

I AM downloading the torrent, I just want it done faster. If I don't need the torrent, I'll finish the DL and seed anyways.

I get it! Would like to get you started with the client/mining, so just write here or PM with any questions.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]

When you are saying the 80-byte input, are you saying that they take the whole header of a block and hash over that? I assumed that only the final sha256, after the midstate has been calculated, was input to the GPU. The header of a Credits block is rather different from a header of a Bitcoin block. BUT, it does the same rounds of midstate calculations, but some more of them, since the header is larger in size.
http://credits-currency.org/viewtopic.php?f=24&t=635



You're right, I was actually thinking of other algos when I said that - the midstate is what they use... meaning... GPU implementations may be adaptable, but I don't think ASICs will be. However, those GPU implementations are optimized for VLIW5/VLIW4 last I checked.

I am pretty much convinced that a GPU miner can be adapted in a straightforward way if one's familiar with the GPU code being adapted.
member
Activity: 81
Merit: 1002
It was only the wind.
Nodes? After a half dozen tries, I successfull transplanted the BTC chain, but the Credits chain isn't coming.

Have you tried:
a) checking the log via Help > Credits debug window > Information > Debug log file > Open. If there is output coming there the Credits blockchain is probably downloading.
b) Restarting the client. I've seen situations where the Credits blocks doesn't start to download until a restart, probably due to timeout of the Credit nodes waiting for the Bitcoin blockchain download.

You could also check Help > Credits Debug Window > Peers and see if you are connected to peers.

Restarted it loads of times, and I am connected to peers, but I don't seem to be exchanging more than a few KB from them.

Strange, have you checked the debug.log output? If there are log output coming it is probably synching the Credits blockchain. Unfortunately the ui seems to be lagging quite a bit on the initial blockchain download. debug.log is where to look if you want to know what is really happening. Do you know where to find it and could you send me a sample of the end of it?

Near the top is of interest:

Code:
2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!


2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:59 Bitcredit: ProcessBlock: ORPHAN BLOCK 0, prev=0000000006a0e351eb4fb2832c49f0aa47f1bad967484c33e6fcd5a25bae7d46
2015-04-27 21:16:04 Bitcredit: Adding node with address 54.174.120.43
2015-04-27 21:16:05 Bitcredit: Looked up DNS seed dnsseed.bitcredit-currency.org
2015-04-27 21:16:05 Bitcredit: Looked up DNS seed seed.xlre4.org
2015-04-27 21:16:05 Bitcredit: Looked up DNS seed seed.crenode.org
2015-04-27 21:16:05 Bitcredit: 3 addresses found from DNS seeds
2015-04-27 21:16:05 bitcredit_dnsseed thread exit
2015-04-27 21:16:06 Bitcredit: receive version message: /Monterosa:0.9.1.30/: version 70002, blocks=0, us=149.154.158.51:55624, them=23.243.43.121:9333, peer=23.243.43.121:9333
2015-04-27 21:16:06 Added time data, samples 11, offset +3 (+0 minutes)
2015-04-27 21:16:06 nTimeOffset = +3  (+0 minutes)
2015-04-27 21:16:08 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:16:13 Bitcoin: connect() to 46.164.150.50:8333 failed after select(): Connection refused (111)
2015-04-27 21:16:19 Bitcoin: connect() to 76.102.243.90:8333 failed after select(): Connection refused (111)
2015-04-27 21:16:20 Bitcoin: receive version message: /Satoshi:0.8.5/: version 70001, blocks=353985, us=[2602:306:cee8:e370:a3ca:9ed3:5fba:bdec]:48711, them=[2001:67c:2354:12::1]:8333, peer=[2001:67c:2354:12::1]:8333
2015-04-27 21:16:20 Added time data, samples 12, offset -161 (-2 minutes)
2015-04-27 21:16:26 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:16:35 Bitcoin: UpdateTip: new best=000000000000000006764f4e060192f122f6d3c5ed8c0c561865bc96b7706c78  height=353986  log2_work=82.692897  tx=66921788  date=2015-04-27 21:16:33 progress=1.000000
2015-04-27 21:16:35 Bitcoin: SetBestChain: 29 of last 100 blocks above version 2
2015-04-27 21:16:35 Bitcoin: ProcessBlock: ACCEPTED
2015-04-27 21:16:42 keypool added key 102, size=101
2015-04-27 21:16:43 keypool reserve 2
2015-04-27 21:16:43 keypool return 2
2015-04-27 21:16:52 keypool reserve 2
2015-04-27 21:16:52 keypool return 2
2015-04-27 21:17:36 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 21:17:48 Bitcredit: receive version message: /Monterosa:0.9.1.30/: version 70002, blocks=10418, us=149.154.158.51:47097, them=161.53.40.94:9333, peer=161.53.40.94:9333
2015-04-27 21:17:48 Added time data, samples 13, offset +5 (+0 minutes)
2015-04-27 21:17:48 nTimeOffset = +3  (+0 minutes)
2015-04-27 21:17:48 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:17:49 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:17:50 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:17:51 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:17:51 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:17:58 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:17:58 Bitcoin: UpdateTip: new best=0000000000000000028025120ee06975e7a569e99c7ea2c16e85d780299da428  height=353987  log2_work=82.692934  tx=66921946  date=2015-04-27 21:17:32 progress=1.000000
2015-04-27 21:17:58 Bitcoin: SetBestChain: 30 of last 100 blocks above version 2
2015-04-27 21:17:58 Bitcoin: ProcessBlock: ACCEPTED
2015-04-27 21:18:04 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:18:05 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:18:06 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:18:23 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:18:23 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:18:42 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:18:43 Bitcredit: receive version message: /Monterosa:0.9.1.10/: version 70002, blocks=10418, us=149.154.158.51:54416, them=24.21.89.229:9333, peer=24.21.89.229:9333
2015-04-27 21:18:43 Added time data, samples 14, offset +3 (+0 minutes)
2015-04-27 21:18:55 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:01 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:13 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:14 Bitcredit: connect() to 188.166.126.70:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:44 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:45 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:46 Bitcredit: connect() to 106.185.41.253:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:47 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:48 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:49 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:49 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:19:57 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:03 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:03 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:04 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:05 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:05 Bitcredit: receive version message: /Monterosa:0.9.1.11/: version 70002, blocks=10418, us=149.154.158.51:38289, them=193.198.102.32:9333, peer=193.198.102.32:9333
2015-04-27 21:20:05 Added time data, samples 15, offset -7 (+0 minutes)
2015-04-27 21:20:05 nTimeOffset = +3  (+0 minutes)
2015-04-27 21:20:05 Bitcredit: connect() to 174.139.197.142:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:11 Bitcredit: connect() to 106.185.41.253:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:12 Bitcredit: connect() to 174.139.197.142:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:41 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:41 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:20:42 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:21:29 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:21:30 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:21:31 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:21:31 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:21:55 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:21:57 Bitcredit: receive version message: /Monterosa:0.9.1.30/: version 70002, blocks=0, us=149.154.158.51:60536, them=68.184.180.69:9333, peer=68.184.180.69:9333
2015-04-27 21:21:57 Added time data, samples 16, offset +4 (+0 minutes)
2015-04-27 21:22:02 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:22:04 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:22:15 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:22:16 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:22:17 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:22:23 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:22:59 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:23:00 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:23:01 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:23:13 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:23:14 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:23:26 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:23:31 keypool reserve 2
2015-04-27 21:23:31 keypool return 2
2015-04-27 21:23:51 keypool reserve 2
2015-04-27 21:23:51 keypool return 2
2015-04-27 21:24:16 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:24:17 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:24:18 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:24:24 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:24:25 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:25:04 Bitcredit: connect() to 110.34.168.54:9333 failed after select(): Connection refused (111)
2015-04-27 21:25:34 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:25:40 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:25:41 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:25:50 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 21:25:51 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:26:08 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:26:09 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:26:48 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:26:54 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:27:06 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:27:06 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:27:12 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:28:59 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:29:45 Bitcredit: connect() to 106.185.41.253:9333 failed after select(): Connection refused (111)
2015-04-27 21:30:22 Bitcoin: UpdateTip: new best=000000000000000007480ded64ed16652abcc9fc24715e76351834ca501fc870  height=353988  log2_work=82.692972  tx=66923072  date=2015-04-27 21:29:05 progress=0.999999
2015-04-27 21:30:22 Bitcoin: SetBestChain: 31 of last 100 blocks above version 2
2015-04-27 21:30:22 Bitcoin: ProcessBlock: ACCEPTED
2015-04-27 21:30:24 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:30:41 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:30:47 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:30:59 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:31:38 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:32:23 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:09 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:33:16 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:24 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 21:33:25 Bitcredit: connect() to 151.50.226.113:9333 failed after select(): No route to host (113)
2015-04-27 21:33:26 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:32 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:33 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:46 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:46 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:47 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:33:48 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:34:27 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:34:33 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 21:34:34 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:35:18 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:35:19 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:35:20 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:36:39 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:36:51 Bitcredit: connect() to 173.51.73.4:9333 failed after select(): Connection refused (111)
2015-04-27 21:37:02 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:37:26 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:37:37 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:37:38 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:38:07 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:38:14 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:15 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:38:15 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:16 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:17 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:17 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:23 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:41 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:41 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:42 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:43 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:38:55 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:38:55 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:39:02 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:39:06 Bitcredit: ProcessBlock: ORPHAN BLOCK 1, prev=0000000005d78dfb8e8dd5717d8a5a86412d0111cf7645d11708f373b282ac4e
2015-04-27 21:39:13 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:39:19 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:39:42 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:40:16 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:40:16 Bitcredit: connect() to 110.34.168.54:9333 failed after select(): Connection refused (111)
2015-04-27 21:40:28 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:40:52 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:41:10 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:41:10 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:41:50 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:41:51 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:41:58 Bitcoin: UpdateTip: new best=00000000000000000939d8cae4e4bb2b08d2ce46116b67d68354cc5a87db45be  height=353989  log2_work=82.69301  tx=66924222  date=2015-04-27 21:41:17 progress=0.999999
2015-04-27 21:41:58 Bitcoin: SetBestChain: 32 of last 100 blocks above version 2
2015-04-27 21:41:58 Bitcoin: ProcessBlock: ACCEPTED
2015-04-27 21:42:20 Bitcredit: connect() to 85.227.166.132:9333 failed after select(): Connection refused (111)
2015-04-27 21:42:20 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 21:42:32 Bitcredit: connect() to 188.166.126.70:9333 failed after select(): Connection refused (111)
2015-04-27 21:42:44 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:42:50 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:42:57 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:42:57 Bitcredit: connect() to 174.139.197.142:9333 failed after select(): Connection refused (111)
2015-04-27 21:43:15 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:43:16 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:43:35 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:43:35 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:43:42 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:43:43 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:44:22 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:44:45 Bitcoin: UpdateTip: new best=0000000000000000136e4f52ad94c9265e209efd2be070af6bf64c2900237414  height=353990  log2_work=82.693048  tx=66924508  date=2015-04-27 21:44:28 progress=1.000000
2015-04-27 21:44:45 Bitcoin: SetBestChain: 31 of last 100 blocks above version 2
2015-04-27 21:44:45 Bitcoin: ProcessBlock: ACCEPTED
2015-04-27 21:44:45 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:44:58 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 21:45:33 ERROR: Bitcoin: AcceptToMemoryPool : inputs already spent
2015-04-27 21:45:43 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:46:01 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 21:46:07 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:46:08 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:46:25 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:46:43 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:46:43 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 21:47:00 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:47:12 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 21:47:51 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:15 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:21 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:27 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:27 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:34 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:35 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:41 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:43 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 21:48:44 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:45 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:45 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:46 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:48:47 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:47 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:48:48 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:49:01 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:49:30 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 21:49:31 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:49:37 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:49:38 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:49:55 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:50:01 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:50:08 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:50:26 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:50:32 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:50:33 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:51:18 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 21:51:19 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:51:42 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 21:51:58 Bitcoin: receive version message: /Satoshi:0.9.1/: version 70002, blocks=280006, us=0.0.0.0:0, them=199.241.31.245:8333, peer=192.168.1.75:52096
2015-04-27 21:51:58 Added time data, samples 17, offset +75 (+1 minutes)
2015-04-27 21:51:58 nTimeOffset = +3  (+0 minutes)
2015-04-27 21:52:10 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:52:43 Bitcredit: connect() to 188.166.126.70:9333 failed after select(): Connection refused (111)
2015-04-27 21:53:12 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:53:13 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:53:19 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:53:20 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:53:21 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:53:21 Bitcoin: UpdateTip: new best=000000000000000004d83a24935d4cbeac752a6694c54b6b7458adbfad597930  height=353991  log2_work=82.693085  tx=66925319  date=2015-04-27 21:53:03 progress=1.000000
2015-04-27 21:53:21 Bitcoin: SetBestChain: 32 of last 100 blocks above version 2
2015-04-27 21:53:21 Bitcoin: ProcessBlock: ACCEPTED
2015-04-27 21:53:27 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:53:34 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:53:51 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:54:03 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:54:03 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:54:46 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 21:54:47 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:55:48 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:56:02 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:56:20 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 21:56:39 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:57:26 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:57:40 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:57:43 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:57:51 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:58:10 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 21:58:10 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:58:11 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:58:33 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:58:34 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:58:46 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:58:46 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:59:09 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:59:21 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:59:27 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 21:59:44 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 21:59:48 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 21:59:48 Bitcredit: connect() to 110.34.168.54:9333 failed after select(): Connection refused (111)
2015-04-27 21:59:49 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 21:59:56 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 21:59:57 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:00:54 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:00:54 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 22:01:00 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:01:13 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 22:01:14 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 22:01:26 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 22:01:32 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:01:39 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 22:01:39 socket recv error Connection timed out (110)
2015-04-27 22:01:50 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:02:14 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:02:17 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:02:18 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:02:20 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 22:02:26 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:02:38 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:02:38 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:03:07 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 22:03:25 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:03:32 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:03:50 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 22:04:01 Bitcredit: connect() to 174.139.135.226:9333 failed after select(): Connection refused (111)
2015-04-27 22:04:01 keypool reserve 2
2015-04-27 22:04:01 keypool return 2
2015-04-27 22:04:13 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 22:04:20 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:04:55 Bitcredit: connect() to 173.51.73.4:9333 failed after select(): Connection refused (111)
2015-04-27 22:05:02 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:05:09 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:05:31 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 22:05:49 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 22:06:18 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:06:19 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:06:19 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 22:06:26 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:07:00 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:07:28 socket recv error Connection timed out (110)
2015-04-27 22:07:41 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:07:49 Bitcredit: receive version message: /Monterosa:0.9.1.30/: version 70002, blocks=0, us=149.154.158.51:37709, them=68.184.180.69:9333, peer=68.184.180.69:9333
2015-04-27 22:07:55 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:07:56 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 22:08:13 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:08:14 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:08:26 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:08:32 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 22:09:07 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:09:35 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:09:35 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 22:09:36 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:09:53 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 22:10:16 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 22:10:34 Bitcredit: receive version message: /Monterosa:0.9.1.30/: version 70002, blocks=10419, us=149.154.158.51:44330, them=96.240.84.121:9333, peer=96.240.84.121:9333
2015-04-27 22:10:34 Added time data, samples 18, offset +1 (+0 minutes)
2015-04-27 22:10:40 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 22:10:46 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:11:34 Bitcredit: connect() to 84.44.238.184:9333 failed after select(): No route to host (113)
2015-04-27 22:11:53 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:11:59 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:12:00 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:12:01 Bitcoin: Pre-allocating up to position 0x8000000 in blk00261.dat
2015-04-27 22:12:01 Bitcoin: UpdateTip: new best=0000000000000000050dac06306e3c9f19637bbef1cc87e376eb89fe863ae292  height=353992  log2_work=82.693123  tx=66926804  date=2015-04-27 22:12:24 progress=1.000000
2015-04-27 22:12:01 Bitcoin: SetBestChain: 32 of last 100 blocks above version 2
2015-04-27 22:12:01 Bitcoin: ProcessBlock: ACCEPTED
2015-04-27 22:12:06 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:12:29 Bitcredit: connect() to 188.166.126.70:9333 failed after select(): Connection refused (111)
2015-04-27 22:12:52 Bitcredit: connect() to 188.166.126.70:9333 failed after select(): Connection refused (111)
2015-04-27 22:13:15 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:13:26 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:13:38 Bitcredit: connect() to 188.166.126.70:9333 failed after select(): Connection refused (111)
2015-04-27 22:13:40 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)
2015-04-27 22:13:46 Bitcredit: connect() to 199.241.31.245:9333 failed after select(): Connection refused (111)
2015-04-27 22:13:46 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:14:10 Bitcredit: connect() to 199.193.80.86:9333 failed after select(): Connection refused (111)
2015-04-27 22:14:27 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:14:45 Bitcredit: connect() to 152.7.70.15:9333 failed after select(): Connection refused (111)
2015-04-27 22:15:24 Bitcredit: connect() to 37.17.163.175:9333 failed after select(): Connection refused (111)
2015-04-27 22:15:25 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:15:28 Bitcredit: connect() to 25.22.167.162:9333 failed after select(): Network is unreachable (101)
2015-04-27 22:15:30 Bitcredit: connect() to 107.184.132.250:9333 failed after select(): Connection refused (111)
2015-04-27 22:15:36 Bitcredit: connect() to 109.182.44.33:9333 failed after select(): Connection refused (111)

Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]

Ok, you are a bit out on a ledge here since running from the builds hasn't been very thoroughly tested. I would still recommend the torrent file, but go ahead and try a reindex if you want to. I'll give any support I can.

Reindex appears to be working. Just... you know, slowly. Tongue

Yeah, hope so. The critical part is (unfortunately) when you change from Bitcoin blockchain reindex to Credits blockchain reindex. That's when the chainstate keeping track of the in-between Credits and Bitcoin state might get messed up.

Still not reconsidering dl'ing the torrent?
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]
Nodes? After a half dozen tries, I successfull transplanted the BTC chain, but the Credits chain isn't coming.

Have you tried:
a) checking the log via Help > Credits debug window > Information > Debug log file > Open. If there is output coming there the Credits blockchain is probably downloading.
b) Restarting the client. I've seen situations where the Credits blocks doesn't start to download until a restart, probably due to timeout of the Credit nodes waiting for the Bitcoin blockchain download.

You could also check Help > Credits Debug Window > Peers and see if you are connected to peers.

Restarted it loads of times, and I am connected to peers, but I don't seem to be exchanging more than a few KB from them.

Strange, have you checked the debug.log output? If there are log output coming it is probably synching the Credits blockchain. Unfortunately the ui seems to be lagging quite a bit on the initial blockchain download. debug.log is where to look if you want to know what is really happening. Do you know where to find it and could you send me a sample of the end of it?

Near the top is of interest:

Code:
2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!

Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin.

There appears to be inconsistencies in the internal state between the blockchains. That's a problem.

There is no way to correct that, without restarting the client with the argument -reindex, and that reindex is going to take a long time.

If you didn't do that before, I suggest you initialise from this pre-updated torrent.
http://credits-currency.org/viewtopic.php?f=18&t=517

And which version are you running?

I ran latest git, when that didn't work, compiled v0.9.1.30-g7605e64-beta and went with that. I'll reindex.

Ok, you are a bit out on a ledge here since running from the builds hasn't been very thoroughly tested. I would still recommend the torrent file, but go ahead and try a reindex if you want to. I'll give any support I can.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]
"Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin."

To add to that, I am not aware of the implementation details of GPU miners and ASICs but have a feeling that they are only moving one specific part of the mining process to specialised hardware. If that is the case, it shouldn't be to difficult to retrofit the Credits source code to run with a GPU/ASIC.

I have studied pretty much every GPU mining OpenCL kernel out there, and improved almost all of them - believe me, SHA256d is EXTREMELY well done, and it takes full advantage of the known 80-byte input. ASICs I don't work with often, but I do know that they accept data and a target, then return nonces. For the hardware to be better optimized, the hardware implementation would have to take advantage of the known input size as well - I'm almost certain this is the case.

When you are saying the 80-byte input, are you saying that they take the whole header of a block and hash over that? I assumed that only the final sha256, after the midstate has been calculated, was input to the GPU. The header of a Credits block is rather different from a header of a Bitcoin block. BUT, it does the same rounds of midstate calculations, but some more of them, since the header is larger in size.
http://credits-currency.org/viewtopic.php?f=24&t=635

member
Activity: 81
Merit: 1002
It was only the wind.
Nodes? After a half dozen tries, I successfull transplanted the BTC chain, but the Credits chain isn't coming.

Have you tried:
a) checking the log via Help > Credits debug window > Information > Debug log file > Open. If there is output coming there the Credits blockchain is probably downloading.
b) Restarting the client. I've seen situations where the Credits blocks doesn't start to download until a restart, probably due to timeout of the Credit nodes waiting for the Bitcoin blockchain download.

You could also check Help > Credits Debug Window > Peers and see if you are connected to peers.

Restarted it loads of times, and I am connected to peers, but I don't seem to be exchanging more than a few KB from them.

EDIT: Also, an IRC channel would be quite nice - I'm on IRC far more than I'm on here.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]
"Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin."

To add to that, I am not aware of the implementation details of GPU miners and ASICs but have a feeling that they are only moving one specific part of the mining process to specialised hardware. If that is the case, it shouldn't be to difficult to retrofit the Credits source code to run with a GPU/ASIC.
sr. member
Activity: 280
Merit: 250
Lead developer of Credits [CRE]
Nodes? After a half dozen tries, I successfull transplanted the BTC chain, but the Credits chain isn't coming.

Have you tried:
a) checking the log via Help > Credits debug window > Information > Debug log file > Open. If there is output coming there the Credits blockchain is probably downloading.
b) Restarting the client. I've seen situations where the Credits blocks doesn't start to download until a restart, probably due to timeout of the Credit nodes waiting for the Bitcoin blockchain download.

You could also check Help > Credits Debug Window > Peers and see if you are connected to peers.

Restarted it loads of times, and I am connected to peers, but I don't seem to be exchanging more than a few KB from them.

Strange, have you checked the debug.log output? If there are log output coming it is probably synching the Credits blockchain. Unfortunately the ui seems to be lagging quite a bit on the initial blockchain download. debug.log is where to look if you want to know what is really happening. Do you know where to find it and could you send me a sample of the end of it?

Near the top is of interest:

Code:
2015-04-27 21:15:58 ERROR: Bitcredit: ConnectTip() : ConnectBlock 000000005fc6f4b75a16b644bc1bd975ec71e7bdfab3144d84915d0efae490d2 failed
2015-04-27 21:15:58 ERROR: Bitcredit: AcceptBlock() : ReceivedBlockTransactions failed
2015-04-27 21:15:58 ERROR: Bitcredit: ProcessBlock() : AcceptBlock FAILED
2015-04-27 21:15:58 Bitcredit: ConnectTip() : No tmp db created, in fast forward state, claim tip is -335816 bitcoin blocks ahead
2015-04-27 21:15:58 ERROR: Bitcredit: Bitcoin block to check for claiming 0000000000000000000000000000000000000000000000000000000000000000 not found in bitcoin blockchain!

Also, for those who were asking, yes, this coin is SHA256d, no, ASICs cannot mine it, and nor can any current GPU mining implementation used with Bitcoin.

There appears to be inconsistencies in the internal state between the blockchains. That's a problem.

There is no way to correct that, without restarting the client with the argument -reindex, and that reindex is going to take a long time.

If you didn't do that before, I suggest you initialise from this pre-updated torrent.
http://credits-currency.org/viewtopic.php?f=18&t=517

And which version are you running?
Pages:
Jump to: