From 1bd78a7b8a1964d53d4859edd502a28454215ca8 Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Wed, 12 Jun 2024 17:26:25 +0300 Subject: [PATCH] Add setValidatorAddress function --- contracts/IPaymaster.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/IPaymaster.sol b/contracts/IPaymaster.sol index e804e58..1138c17 100644 --- a/contracts/IPaymaster.sol +++ b/contracts/IPaymaster.sol @@ -38,6 +38,7 @@ interface IPaymaster { function removeSchain(SchainHash schainHash) external; function addValidator(ValidatorId id, address validatorAddress) external; function removeValidator(ValidatorId id) external; + function setValidatorAddress(ValidatorId id, address validatorAddress) external; function setNodesAmount(ValidatorId id, uint256 amount) external; function setActiveNodes(ValidatorId id, uint256 amount) external; function setMaxReplenishmentPeriod(Months months) external;