We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72282a commit d073921Copy full SHA for d073921
src/tests/mocks/sends-to-self-on-construct.sol
@@ -1,4 +1,5 @@
1
-pragma solidity 0.6.2;
+// SPDX-License-Identifier: MIT
2
+pragma solidity 0.8.6;
3
4
import "../../contracts/mocks/nf-token-mock.sol";
5
import "./nf-token-receiver-test-mock.sol";
@@ -8,8 +9,7 @@ contract SendsToSelfOnConstruct is
8
9
{
10
uint constant TOKEN_ID = 1;
11
- constructor()
12
- public
+ constructor()
13
14
NFTokenMock tokens = new NFTokenMock();
15
tokens.mint(address(this), TOKEN_ID);
0 commit comments