diff --git a/.changeset/fluffy-ladybugs-fix.md b/.changeset/fluffy-ladybugs-fix.md new file mode 100644 index 00000000000..6a7c53473f5 --- /dev/null +++ b/.changeset/fluffy-ladybugs-fix.md @@ -0,0 +1,5 @@ +--- +"chainlink": patch +--- + +#internal Add unexposed client command for updating a bridge diff --git a/core/cmd/bridge_commands.go b/core/cmd/bridge_commands.go index cd314b23218..b579063eb39 100644 --- a/core/cmd/bridge_commands.go +++ b/core/cmd/bridge_commands.go @@ -128,6 +128,7 @@ func (s *Shell) CreateBridge(c *cli.Context) (err error) { return s.renderAPIResponse(resp, &BridgePresenter{}) } +// UpdateBridge updates a specific Bridge by name. func (s *Shell) UpdateBridge(c *cli.Context) (err error) { if !c.Args().Present() { return s.errorOut(errors.New("must pass the name of the bridge to be updated"))