Skip to content

Commit

Permalink
Remove unnecessary ProxyStorage inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
mjlescano committed Aug 16, 2023
1 parent 42a56db commit 2f57d56
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import "@synthetixio/core-contracts/contracts/initializable/InitializableMixin.s
import "@synthetixio/core-contracts/contracts/utils/SafeCast.sol";
import "@synthetixio/core-contracts/contracts/ownership/OwnableStorage.sol";
import "@synthetixio/core-modules/contracts/storage/CrossChain.sol";
import "@synthetixio/core-contracts/contracts/proxy/ProxyStorage.sol";
import "../../interfaces/IElectionModule.sol";
import "../../submodules/election/ElectionCredentials.sol";
import "../../submodules/election/ElectionTally.sol";
Expand All @@ -18,8 +17,7 @@ contract BaseElectionModule is
IElectionModule,
ElectionCredentials,
ElectionTally,
InitializableMixin,
ProxyStorage
InitializableMixin
{
using SetUtil for SetUtil.AddressSet;
using Council for Council.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ describe('ElectionModule - voting', () => {
[, user, otherUser] = getSigners();
});

before('set mothership', async () => {
await c.CoreProxy.configureMothership(13370);
});

before('create voting power for user', async () => {
await c.CoreProxy.Ballot_set_votingPower(
await c.CoreProxy.Council_get_currentElectionId(),
Expand Down

0 comments on commit 2f57d56

Please sign in to comment.