From 2fab37ad6061f5551307f96e96aa5643f44d8d79 Mon Sep 17 00:00:00 2001 From: Milap Sheth Date: Sun, 30 Jun 2024 18:55:48 -0400 Subject: [PATCH] Update contracts/gateway/AxelarAmplifierGateway.sol --- contracts/gateway/AxelarAmplifierGateway.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/gateway/AxelarAmplifierGateway.sol b/contracts/gateway/AxelarAmplifierGateway.sol index 54606118..f42a000e 100644 --- a/contracts/gateway/AxelarAmplifierGateway.sol +++ b/contracts/gateway/AxelarAmplifierGateway.sol @@ -53,7 +53,7 @@ contract AxelarAmplifierGateway is BaseAmplifierGateway, BaseWeightedMultisig, U function _setup(bytes calldata data) internal override { (address operator_, WeightedSigners[] memory signers) = abi.decode(data, (address, WeightedSigners[])); - // operator is an optional parameter. The gateway owner can set it later if needed. + // operator is an optional parameter. The gateway owner can set it later via `transferOperatorship` if needed. // This also simplifies setup for upgrades so if the current operator doesn't need to be changed, then it can be skipped, instead of having to specify the current operator again. if (operator_ != address(0)) { _transferOperatorship(operator_);