Skip to content

Commit

Permalink
fix for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 committed Nov 11, 2024
1 parent 95abd68 commit a1b11a2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion chain/namada/namada_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ func (n *NamadaNode) CreateContainer(ctx context.Context) error {
p2p := make(testutil.Toml)
p2p["laddr"] = "0.0.0.0:26657"
c["ledger.cometbft.p2p"] = p2p
testutil.ModifyTomlConfigFile(ctx, n.logger(), n.DockerClient, n.TestName, n.VolumeName, configPath, c)
err := testutil.ModifyTomlConfigFile(ctx, n.logger(), n.DockerClient, n.TestName, n.VolumeName, configPath, c)
if err != nil {
return err
}

mvCmd := "echo 'starting a validator node'"
if !n.Validator {
Expand Down

0 comments on commit a1b11a2

Please sign in to comment.