HugoByte / DIVE

DIVE deeply into the world of Blockchain and Web 3.0 using Deployable Infrastructure for Virtually Effortless blockchain integration
Apache License 2.0
20 stars 8 forks source link

Not able to run 'full' node type in local #300

Closed hemz10 closed 10 months ago

hemz10 commented 10 months ago

Overview

As per default value when parachain is given full node type will be running, but when I run a node type as full in config it throws error. Need to confirm which is correct, default value is full or collator for parachain ?

Steps to Reproduce

Steps to reproduce the behavior:

  1. edit parachain field in config to run node as full
  2. run command dive chain kusama -c path to polkadot_config.json

config file :

{
  "chain_type": "local",
  "relaychain": {
    "name": "rococo-local",
    "nodes": [
      {
        "name": "alice",
        "node_type": "validator",
        "prometheus": false
      },
      {
        "name": "bob",
        "node_type": "full",
        "prometheus": true

      }
    ]
  },

  "parachains": [
    {
      "name":"mangata",
      "nodes": [
        {
          "name": "alice",
          "node_type": "collator",
          "prometheus": false

        },
        {
          "name": "bob",
          "node_type": "full",
          "prometheus": true
        }
      ]
    }
  ],
  "explorer": true
}

Expected Behavior

When default value is full I should be able to run full node type from config as well

Screenshots

Default Values As per req: image

Error : image

hemz10 commented 10 months ago

Closing this issue as invalid. Parachain runs with node type as full