From cc3c7677d8fd33c4b95e6ab8620ca0333da88ac1 Mon Sep 17 00:00:00 2001 From: Pandapip1 <45835846+Pandapip1@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:28:07 -0500 Subject: [PATCH] Update EIP-2771: Fix typo (#6281) --- EIPS/eip-2771.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-2771.md b/EIPS/eip-2771.md index 75f3f2fbfd..1c008c1575 100644 --- a/EIPS/eip-2771.md +++ b/EIPS/eip-2771.md @@ -75,7 +75,7 @@ function isTrustedForwarder(address forwarder) external view returns(bool); Internally, the **Recipient** MUST then accept a request from forwarder. -`isTrustedForwarder` function MAY be called on-chain, and as such gas restrictions MUST be put in place. A Gas limit of 50k SHOULD be sufficient to making the decision either inside the contract, or delegating it to another contract and doing some memory access calculations, like querying a mapping. +`isTrustedForwarder` function MAY be called on-chain, and as such gas restrictions MUST be put in place. A gas limit of 50k SHOULD be sufficient to making the decision either inside the contract, or delegating it to another contract and doing some memory access calculations, like querying a mapping. ## Rationale