From 73ed99993b6cd3f86dd4b05ed10db0688336628a Mon Sep 17 00:00:00 2001 From: cryptoDev222 Date: Mon, 30 Aug 2021 03:23:54 -0500 Subject: [PATCH] reactor: fix minor issue --- contracts/mainnet/connectors/basic-ERC721/main.sol | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contracts/mainnet/connectors/basic-ERC721/main.sol b/contracts/mainnet/connectors/basic-ERC721/main.sol index e7680b51..849aebba 100644 --- a/contracts/mainnet/connectors/basic-ERC721/main.sol +++ b/contracts/mainnet/connectors/basic-ERC721/main.sol @@ -14,8 +14,8 @@ abstract contract BasicResolver is Events, DSMath, Basic { /** * @dev Deposit Assets To Smart Account. * @notice Deposit a ERC721 token to DSA - * @param token The address of the token to deposit. - * @param tokenId The id of token to deposit. + * @param token Address of token. + * @param tokenId ID of token. * @param getId ID to retrieve tokenId. * @param setId ID stores the tokenId. */ @@ -43,8 +43,8 @@ abstract contract BasicResolver is Events, DSMath, Basic { /** * @dev Withdraw Assets To Smart Account. * @notice Withdraw a ERC721 token from DSA - * @param token The address of the token to deposit. - * @param tokenId The id of token to deposit. + * @param token Address of the token. + * @param tokenId ID of token. * @param to The address to receive the token upon withdrawal * @param getId ID to retrieve tokenId. * @param setId ID stores the tokenId. @@ -71,6 +71,6 @@ abstract contract BasicResolver is Events, DSMath, Basic { } } -contract ConnectV2Basic is BasicResolver { +contract ConnectV2BasicERC721 is BasicResolver { string public constant name = "BASIC-ERC721-A"; }