hyperledger-iroha / iroha

Iroha - A simple, enterprise-grade decentralized ledger
https://wiki.hyperledger.org/display/iroha
Apache License 2.0
438 stars 280 forks source link

refactor: Change parameters format in genesis.json #5020

Closed dima74 closed 1 month ago

dima74 commented 1 month ago

Context

Fixes #4813

Solution

Changes format of genesis.json from (full format):

{
  ...
  "parameters": [
    {
      "Sumeragi": {
        "BlockTimeMs": 2000
      }
    },
    {
      "Sumeragi": {
        "CommitTimeMs": 4000
      }
    },
    ...
    {
      "Transaction": {
        "MaxInstructions": 4096
      }
    },
    ...

to (full format):

{
  ...
  "parameters": {
    "sumeragi": {
      "block_time_ms": 2000,
      "commit_time_ms": 4000,
      ...
    },
    "transaction": {
      "max_instructions": 4096,
      ...
    },
    ...

Migration Guide (optional)

Review notes (optional)

Checklist

github-actions[bot] commented 1 month ago

@BAStos525

dima74 commented 1 month ago

@BAStos525 @timofeevmd format of parameters in genesis.json has changed. Please see PR description for details of the new format.