Skip to content

Commit

Permalink
fix: dymint expect mock in config instead of local (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsitrin authored Aug 28, 2023
1 parent 8171db4 commit 2f3d444
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sequencer/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ func updateDaConfigInToml(rlpCfg config.RollappConfig, dymintCfg *toml.Tree) err
}
dymintCfg.Set("namespace_id", celDAManager.NamespaceID)
}

if rlpCfg.DA == config.Local {
dymintCfg.Set("da_layer", "mock")
}

return nil
}

Expand Down

0 comments on commit 2f3d444

Please sign in to comment.