File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -40,13 +40,21 @@ The final 2.4.0 release includes a refactor of the GSN contracts that will be a
40
40
* ` GSNRecipient ` , ` GSNBouncerBase ` , and ` GSNContext ` were all merged into ` GSNRecipient ` .
41
41
* ` GSNBouncerSignature ` and ` GSNBouncerERC20Fee ` were renamed to ` GSNRecipientSignature ` and ` GSNRecipientERC20Fee ` .
42
42
* It is no longer necessary to inherit from ` GSNRecipient ` when using ` GSNRecipientSignature ` and ` GSNRecipientERC20Fee ` .
43
-
44
- Refer to the table below to adjust your import statements.
43
+
44
+ For example, a contract using ` GSNBouncerSignature ` would have to be changed in the following way.
45
+
46
+ ``` diff
47
+ - contract MyDapp is GSNRecipient, GSNBouncerSignature {
48
+ + contract MyDapp is GSNRecipientSignature {
49
+ ```
50
+
51
+ Refer to the table below to adjust your inheritance list.
45
52
46
53
| 2.4.0-beta | 2.4.0 |
47
54
| ---------------------------------- | ---------------------------- |
48
55
| ` GSNRecipient, GSNBouncerSignature ` | ` GSNRecipientSignature ` |
49
56
| ` GSNRecipient, GSNBouncerERC20Fee ` | ` GSNRecipientERC20Fee ` |
57
+ | ` GSNBouncerBase ` | ` GSNRecipient ` |
50
58
51
59
## 2.3.0 (2019-05-27)
52
60
You can’t perform that action at this time.
0 commit comments