From aa5f2d8ec555daf77d7da9749e5aceb2fab1e63a Mon Sep 17 00:00:00 2001 From: gbayasgalan Date: Tue, 24 Sep 2024 20:00:16 +0200 Subject: [PATCH] FIX: config.yaml formatting --- launcher/src/store/genesis.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/launcher/src/store/genesis.js b/launcher/src/store/genesis.js index 63f801022..137028568 100644 --- a/launcher/src/store/genesis.js +++ b/launcher/src/store/genesis.js @@ -52,9 +52,7 @@ export const useGenesis = defineStore("genesis", { excessBlobGas: null, blobGasUsed: null, }, - configYaml: ` - - CONFIG_NAME: interop + configYaml: `CONFIG_NAME: interop PRESET_BASE: interop # Genesis @@ -84,7 +82,10 @@ export const useGenesis = defineStore("genesis", { # Deposit contract DEPOSIT_CONTRACT_ADDRESS: 0x4242424242424242424242424242424242424242 - `, + ` + .split("\n") + .map((line) => line.trimStart()) + .join("\n"), finalGenesisFile: null, }),