From 85a10a9e5daab26921227693e02efaf969e489f7 Mon Sep 17 00:00:00 2001 From: MathisGD <74971347+MathisGD@users.noreply.github.com> Date: Tue, 23 Jun 2026 12:20:54 +0200 Subject: [PATCH] nit: setIsRootRatified external Signed-off-by: MathisGD <74971347+MathisGD@users.noreply.github.com> --- src/ratifiers/SetterRatifier.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ratifiers/SetterRatifier.sol b/src/ratifiers/SetterRatifier.sol index d227528d..fe766eca 100644 --- a/src/ratifiers/SetterRatifier.sol +++ b/src/ratifiers/SetterRatifier.sol @@ -22,7 +22,7 @@ contract SetterRatifier is ISetterRatifier { MIDNIGHT = _midnight; } - function setIsRootRatified(address maker, bytes32 root, bool newIsRootRatified) public { + function setIsRootRatified(address maker, bytes32 root, bool newIsRootRatified) external { require(maker == msg.sender || IMidnight(MIDNIGHT).isAuthorized(maker, msg.sender), Unauthorized()); isRootRatified[maker][root] = newIsRootRatified; emit SetIsRootRatified(msg.sender, maker, root, newIsRootRatified);