I cant start node, help!

+1 vote

I cant start node: Im compile

Looking for genesis block...
01 x 2^24 nonces checked
02 x 2^24 nonces checked
03 x 2^24 nonces checked
04 x 2^24 nonces checked
05 x 2^24 nonces checked
06 x 2^24 nonces checked
07 x 2^24 nonces checked
08 x 2^24 nonces checked
09 x 2^24 nonces checked
0a x 2^24 nonces checked
0b x 2^24 nonces checked
0c x 2^24 nonces checked
0d x 2^24 nonces checked
0e x 2^24 nonces checked
0f x 2^24 nonces checked
10 x 2^24 nonces checked
11 x 2^24 nonces checked
12 x 2^24 nonces checked
13 x 2^24 nonces checked
14 x 2^24 nonces checked
15 x 2^24 nonces checked
16 x 2^24 nonces checked
asked Sep 14, 2017 by miguelcas12

1 Answer

0 votes

It looks like you set the pow-minimum-bits in the blockchain parameters to a much higher value than the default, leading MultiChain to seek blocks whose hashes contain many leading zeroes. Generally you should have no reason to do this in a permissioned blockchain – that parameter is set to 8 by default so that block headers start with two (hexadecimal) zeroes, to make them look familiar to developers, but even that's not really necessary.

answered Sep 15, 2017 by MultiChain
...