Commit 53f7ae43 authored by James Kim's avatar James Kim

remove attest function (for now)

parent 96b9a7fa
...@@ -157,16 +157,6 @@ contract OptimistInviter is Semver, EIP712Upgradeable { ...@@ -157,16 +157,6 @@ contract OptimistInviter is Semver, EIP712Upgradeable {
ATTESTATION_STATION.attest(attestations); ATTESTATION_STATION.attest(attestations);
} }
function attest(AttestationStation.AttestationData[] calldata _attestations) public {
// Only invite granter can grant invites
require(
msg.sender == INVITE_GRANTER,
"OptimistInviter: only invite granter can issue attestations"
);
ATTESTATION_STATION.attest(_attestations);
}
/** /**
* @notice Allows anyone (but likely the claimer) to commit a received signature along with the * @notice Allows anyone (but likely the claimer) to commit a received signature along with the
* address to claim to. * address to claim to.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment