Why does the program complain about invalid protocol version?

+1 vote

What am I doing wrong here?

Executing cmd: multichain-1.0.1/multichain-util create documents -maximum-block-size=1000000000  default-rpc-port=8570 

MultiChain 1.0.1 Utilities (protocol 10009)

ERROR: Invalid value for protocol version. Valid range: 10004 - 10009
ERROR: Blockchain parameter set was not generated.

asked Nov 3, 2017 by kwoot

1 Answer

0 votes
 
Best answer

You need to format the second parameter like this:

-default-rpc-port=8570

Without the leading hyphen, it looks like a parameter which is setting the protocol version number.

answered Nov 3, 2017 by MultiChain
Ah, yes. A stupid typo. Thanks!
...