Hi guys,
This is a simple config question.
I Want be able to create N number of Assets with issue command, but how the best approach to config my blockchain to accept that ?
All works fine, it's just to find an solution for that.
Example error flow:
Issue "issue1" - qty:50000000 - Works
Issue "issue2" - qty:50000000 - Works
Issue "issue3" - qty:50000000 - Works
Issue "issue4" - qty:50000000 - Works
.
.
.
Issue "issue26" - qty:50000000 - 6:Internal error negative change amount
Issue "issue27" - qty:5000000 - Works
Issue "issue28" - qty:5000000 - 6:Internal error negative change amount
Issue "issue29" - qty:500000 - Works
Issue "issue30" - qty:500000 - 6:Internal error negative change amount
Issue "issue31" - qty:50000 - Works
My blockchain params - version 1.0.2
{
"chain-protocol" : "multichain",
"chain-description" : "xxxxx",
"root-stream-name" : "root",
"root-stream-open" : true,
"chain-is-testnet" : false,
"target-block-time" : 15,
"maximum-block-size" : 8388608,
"default-network-port" : xxxx,
"default-rpc-port" : xxxx,
"anyone-can-connect" : true,
"anyone-can-send" : false,
"anyone-can-receive" : false,
"anyone-can-receive-empty" : true,
"anyone-can-create" : false,
"anyone-can-issue" : false,
"anyone-can-mine" : false,
"anyone-can-activate" : false,
"anyone-can-admin" : false,
"support-miner-precheck" : true,
"allow-arbitrary-outputs" : false,
"allow-p2sh-outputs" : true,
"allow-multisig-outputs" : true,
"setup-first-blocks" : 60,
"mining-diversity" : 0.30000000,
"admin-consensus-upgrade" : 0.50000000,
"admin-consensus-admin" : 0.50000000,
"admin-consensus-activate" : 0.50000000,
"admin-consensus-mine" : 0.50000000,
"admin-consensus-create" : 0.00000000,
"admin-consensus-issue" : 0.00000000,
"lock-admin-mine-rounds" : 10,
"mining-requires-peers" : true,
"mine-empty-rounds" : 10.00000000,
"mining-turnover" : 1.00000000,
"first-block-reward" : -1,
"initial-block-reward" : 100000000000000,
"reward-halving-interval" : 60,
"reward-spendable-delay" : 1,
"minimum-per-output" : 0,
"maximum-per-output" : 100000000000000,
"minimum-relay-fee" : 25, ?
"native-currency-multiple" : 100000000,
"skip-pow-check" : false,
"pow-minimum-bits" : 8,
"target-adjust-freq" : -1,
"allow-min-difficulty-blocks" : false,
"only-accept-std-txs" : true,
"max-std-tx-size" : 4194304,
"max-std-op-returns-count" : 10,
"max-std-op-return-size" : 2097152,
"max-std-op-drops-count" : 5,
"max-std-element-size" : 8192,
"chain-name" : "xxxxx",
"protocol-version" : 10009,
"network-message-start" : "f0d0d7f2",
"address-pubkeyhash-version" : "006e5b21",
"address-scripthash-version" : "05bf80dd",
"private-key-version" : "800f1f7d",
"address-checksum-value" : "2709b1f2",
"genesis-pubkey" : "02e5cb3d73c07db36fa1f68279a6efef4912d0ce436e3943476c1649d230cc6500",
"genesis-version" : 1,
"genesis-timestamp" : 1512844305,
"genesis-nbits" : 536936447,
"genesis-nonce" : 99,
"genesis-pubkey-hash" : "096dcab70ed4b7813aee44fca58bd845d13eddf3",
"genesis-hash" : "00c44e89f5e36d9c1848797acfac6595ba1603a1e742e6ceedcbcf4323535476",
"chain-params-hash" : "d4c45a5e24f77d965c659bbb6074ca4fdbe659996605a1870e348cc34f44ee16"
}
All the best.