Skip to content

Commit

Permalink
Fix hrmp channels handling for polkadot chainspec (#157)
Browse files Browse the repository at this point in the history
* Fix hrmp channels handling for polkadot chainspec

* fix formatting
  • Loading branch information
mateuszaaa authored Aug 24, 2023
1 parent a5bf394 commit 2bf6d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ const generateRelaychainGenesisFile = (config: Config, path: string, output: str
}
});
}
_.merge(runtime.runtime_genesis_config, config.relaychain.runtimeGenesisConfig);
_.merge(runtime, config.relaychain.overrides);
_.merge(runtime.runtime_genesis_config || runtime, config.relaychain.runtimeGenesisConfig);
_.merge(runtime.runtime_genesis_config || runtime, config.relaychain.overrides);
}

// genesis parachains
Expand Down

0 comments on commit 2bf6d50

Please sign in to comment.