Skip to content

Commit ee89385

Browse files
committed
Fix upgradeable patch
1 parent aff850f commit ee89385

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/upgradeable/upgradeable.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ index ff596b0c..00000000
5959
-<!-- Make sure that you have reviewed the OpenZeppelin Contracts Contributor Guidelines. -->
6060
-<!-- https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/CONTRIBUTING.md -->
6161
diff --git a/README.md b/README.md
62-
index 9d1c405b..c264e29c 100644
62+
index 27627f43..47c5c7a4 100644
6363
--- a/README.md
6464
+++ b/README.md
6565
@@ -19,6 +19,9 @@
@@ -94,8 +94,8 @@ index 9d1c405b..c264e29c 100644
9494
```solidity
9595
pragma solidity ^0.8.19;
9696

97-
-import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
98-
+import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol";
97+
-import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
98+
+import {ERC71Upgradeable} "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol";
9999

100100
-contract MyCollectible is ERC721 {
101101
- constructor() ERC721("MyCollectible", "MCO") {
@@ -191,7 +191,7 @@ index 2cbff622..97f43d7a 100644
191191
abstract contract ERC20Wrapper is ERC20 {
192192
IERC20 private immutable _underlying;
193193
diff --git a/contracts/utils/cryptography/EIP712.sol b/contracts/utils/cryptography/EIP712.sol
194-
index 711aaba8..4848badd 100644
194+
index d94e956a..86bb5713 100644
195195
--- a/contracts/utils/cryptography/EIP712.sol
196196
+++ b/contracts/utils/cryptography/EIP712.sol
197197
@@ -4,7 +4,6 @@

0 commit comments

Comments
 (0)