Initial block setup?

+1 vote
When we setup first block size parameter to 10 it creates 9 blocks as expected, but why doesn't it create more blocks?

target-block-time = 60

setup-first-blocks=10
asked May 25, 2016 by bojan.radulovic

1 Answer

0 votes

The setup-first-blocks parameter defines the length of the setup phase, in which the following parameters are not applied:

mining-diversity
admin-consensus-admin
admin-consensus-activate
admin-consensus-mine
admin-consensus-issue
mining-requires-peers

 

So the most likely explanation is that you have mining-requires-peers set to true, and more than one address has been granted the mine permission, but the node has no peers. So it stops mining at the end of the setup phase.
answered May 25, 2016 by MultiChain
...