From d6df802d9f5251179694eca0b6ff40a8c4b9c7b5 Mon Sep 17 00:00:00 2001 From: pblivin0x <84149824+pblivin0x@users.noreply.github.com> Date: Mon, 8 Jul 2024 15:35:12 -0400 Subject: [PATCH] fix interface --- src/interfaces/staking/ISignedSnapshotStakingPool.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/staking/ISignedSnapshotStakingPool.sol b/src/interfaces/staking/ISignedSnapshotStakingPool.sol index 579c6f7..713642c 100644 --- a/src/interfaces/staking/ISignedSnapshotStakingPool.sol +++ b/src/interfaces/staking/ISignedSnapshotStakingPool.sol @@ -28,7 +28,7 @@ interface ISignedSnapshotStakingPool is ISnapshotStakingPool { /// @notice Set the message to sign when staking /// @param newMessage The new message - function setMessage(string calldata newMessage) external; + function setMessage(string memory newMessage) external; /// @notice Get the hashed digest of the message to be signed for staking /// @return The hashed bytes to be signed