File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
packages/sharing-smart-contract Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,16 @@ import {ManageOrders} from "../ManageOrders.sol";
3434 */
3535
3636contract DataProtectorSharingV2Mock is DataProtectorSharing {
37-
3837 string public newStorage;
3938
4039 /// @custom:oz-upgrades-unsafe-allow constructor
41- constructor () DataProtectorSharing (
42- address (0 ),
43- IRegistry (address (0 )),
44- AddOnlyAppWhitelistRegistry (address (0 ))
45- ) {}
40+ constructor ()
41+ DataProtectorSharing (
42+ address (0 ),
43+ IRegistry (address (0 )),
44+ AddOnlyAppWhitelistRegistry (address (0 ))
45+ )
46+ {}
4647
4748 function initializeV2 (string calldata foo ) public reinitializer (2 ) {
4849 newStorage = foo;
Original file line number Diff line number Diff line change 11import { loadFixture } from '@nomicfoundation/hardhat-toolbox/network-helpers.js' ;
22import { expect } from 'chai' ;
33import hardhat from 'hardhat' ;
4- const { ethers, upgrades } = hardhat ;
54import { createCollection , deploySCFixture } from './utils/loadFixture.test.js' ;
5+ const { ethers, upgrades } = hardhat ;
66
77// TODO convert to ts.
88// TODO use typechain for factories.
You can’t perform that action at this time.
0 commit comments