Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable immutable forwarder in ERC2771Context #2917

Merged
merged 10 commits into from
Dec 28, 2021
Prev Previous commit
Next Next commit
Update contracts/metatx/ERC2771Context.sol
Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
  • Loading branch information
Amxx and frangio authored Nov 16, 2021
commit c27c67f4bb9f05a3729edab852da113fe3b51aa4
1 change: 1 addition & 0 deletions contracts/metatx/ERC2771Context.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import "../utils/Context.sol";
* @dev Context variant with ERC2771 support.
*/
abstract contract ERC2771Context is Context {
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable
address private immutable _trustedForwarder;
frangio marked this conversation as resolved.
Show resolved Hide resolved
Amxx marked this conversation as resolved.
Show resolved Hide resolved

constructor(address trustedForwarder) {
Expand Down