From 115300a58c9fab643bae7f3e0888e570dafd1d53 Mon Sep 17 00:00:00 2001 From: ahramy Date: Wed, 25 Sep 2024 12:35:39 +0900 Subject: [PATCH] chore: remove incorrect natspec (#188) --- contracts/types/WeightedMultisigTypes.sol | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/contracts/types/WeightedMultisigTypes.sol b/contracts/types/WeightedMultisigTypes.sol index 63578e17..bf0e1a8d 100644 --- a/contracts/types/WeightedMultisigTypes.sol +++ b/contracts/types/WeightedMultisigTypes.sol @@ -3,10 +3,9 @@ pragma solidity ^0.8.0; /** - * @notice This struct represents the weighted signers payload - * @param signers The list of signers - * @param weights The list of weights - * @param threshold The threshold for the signers + * @notice This struct represents the weighted signer + * @param signer The address of the weighted signer + * @param weight The weight of the weighted singer */ struct WeightedSigner { address signer;