remove UnsetDefaultProfileWithSigData

This commit is contained in:
Josh Stevens
2022-03-02 10:50:17 +00:00
parent e7649a04ae
commit 87f9fe38a3

View File

@@ -123,18 +123,6 @@ library DataTypes {
EIP712Signature sig;
}
/**
* @notice A struct containing the parameters required for the `unsetDefaultProfileWithSig()` function. Parameters are
* the same as the regular `unsetDefaultProfile()` function, with an added EIP712Signature.
*
* @param profileId The token ID of the profile which will be unset as default
* @param sig The EIP712Signature struct containing the profile owner's signature.
*/
struct UnsetDefaultProfileWithSigData {
uint256 profileId;
EIP712Signature sig;
}
/**
* @notice A struct containing the parameters required for the `setFollowModuleWithSig()` function. Parameters are
* the same as the regular `setFollowModule()` function, with an added EIP712Signature.