From df67c8d9302126eafc061afc45a745878778644f Mon Sep 17 00:00:00 2001 From: Olexandr88 Date: Thu, 16 Apr 2026 11:22:32 +0300 Subject: [PATCH] chore: remove unused Address import --- SayGM-Contract/contracts/SayGM.sol | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/SayGM-Contract/contracts/SayGM.sol b/SayGM-Contract/contracts/SayGM.sol index c4ac17c..2208a09 100644 --- a/SayGM-Contract/contracts/SayGM.sol +++ b/SayGM-Contract/contracts/SayGM.sol @@ -4,7 +4,6 @@ pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; -import "@openzeppelin/contracts/utils/Address.sol"; /** * @title SayGM @@ -14,7 +13,6 @@ import "@openzeppelin/contracts/utils/Address.sol"; * Fees are accumulated in the contract and can be withdrawn to an address specified by the owner. */ contract SayGM is Ownable, ReentrancyGuard, Pausable { - using Address for address payable; // Basic state variables mapping(address => uint256) public lastGm; @@ -181,4 +179,4 @@ contract SayGM is Ownable, ReentrancyGuard, Pausable { emit FeeRecipientUpdated(feeRecipient, newFeeRecipient); feeRecipient = newFeeRecipient; } -} \ No newline at end of file +}