Skip to content

Commit

Permalink
fix: error in neutron package
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 committed Dec 12, 2023
1 parent be06c12 commit 0143f15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cmd/chains/neutron/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func RunNeutron(cli *common.Cli) (*common.DiveServiceResponse, error) {

errRemove := cli.Context().RemoveServicesByServiceNames(services, common.DiveEnclave)
if errRemove != nil {
return nil, common.WrapMessageToError(errRemove, "Neutron Run Failed ")
return nil, common.WrapMessageToErrorf(errRemove, "%s.%s", errRemove, "Neutron Run Failed ")
}

return nil, common.WrapMessageToErrorf(common.ErrDataUnMarshall, "%s.%s", err, "Neutron Run Failed ")
Expand Down

0 comments on commit 0143f15

Please sign in to comment.