Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions SayGM-Contract/contracts/SayGM.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;
Expand Down Expand Up @@ -181,4 +179,4 @@ contract SayGM is Ownable, ReentrancyGuard, Pausable {
emit FeeRecipientUpdated(feeRecipient, newFeeRecipient);
feeRecipient = newFeeRecipient;
}
}
}