Configure Multichain for behaving like a "Regtest"net

+1 vote
Hello

Is there any way to force multichain to behave like a bitcoin regtest net?  to generate as many blocks as we want and set up locally?

Thanks in advance
asked Feb 19, 2018 by davotrade

1 Answer

+1 vote

If you want to manually control the block generation process in MultiChain, start multichaind with these options:

-gen=0 -mineblocksondemand

Then every time you want to generate a block, run this command:

setgenerate true

Also (undocumented) you can call this to generate many blocks:

setgenerate * 100

answered Feb 21, 2018 by MultiChain
...