test-isol-01 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27,7 +27,7 @@ abstract contract ERC20TransferWithAuthorize is ERC20, TransferAuthorize, Reentr
|
|
|
27
27
|
uint8 v,
|
|
28
28
|
bytes32 r,
|
|
29
29
|
bytes32 s
|
|
30
|
-
) external nonReentrant {
|
|
30
|
+
) external override nonReentrant {
|
|
31
31
|
// Only the recipient should be able to call this helper
|
|
32
32
|
require(msg.sender == to, "ERC20TransferAuthorize: caller must sender");
|
|
33
33
|
|
|
@@ -64,7 +64,7 @@ abstract contract ERC20TransferWithAuthorize is ERC20, TransferAuthorize, Reentr
|
|
|
64
64
|
uint8 v,
|
|
65
65
|
bytes32 r,
|
|
66
66
|
bytes32 s
|
|
67
|
-
) external nonReentrant {
|
|
67
|
+
) external override nonReentrant {
|
|
68
68
|
// Recover signer and validate
|
|
69
69
|
address signer = _verify(
|
|
70
70
|
TRANSFER_TYPEHASH,
|
|
@@ -98,7 +98,7 @@ abstract contract ERC20TransferWithAuthorize is ERC20, TransferAuthorize, Reentr
|
|
|
98
98
|
uint8 v,
|
|
99
99
|
bytes32 r,
|
|
100
100
|
bytes32 s
|
|
101
|
-
) external nonReentrant {
|
|
101
|
+
) external override nonReentrant {
|
|
102
102
|
// Recover signer and validate
|
|
103
103
|
address signer = _verify(
|
|
104
104
|
APPROVE_TYPEHASH,
|