Skip to content

Commit

Permalink
Fix audit #SVR-01
Browse files Browse the repository at this point in the history
  • Loading branch information
smbsp committed Jan 14, 2022
1 parent 2478d75 commit b2d1347
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 345 deletions.
145 changes: 0 additions & 145 deletions contracts/governance/Vesting/SVR.sol

This file was deleted.

2 changes: 1 addition & 1 deletion tests/FeeSharingProxyTest.js
Expand Up @@ -252,7 +252,7 @@ contract("FeeSharingProxy:", (accounts) => {
describe("FeeSharingProxy", () => {
it("Should not be able to initiate Proxy with zero address protocol & staking", async () => {
await expectRevert(FeeSharingProxy.new(ZERO_ADDRESS, staking.address), "ERR_ZERO_ADDRESS");
await expectRevert(FeeSharingProxy.new(protocol.address, ZERO_ADDRESS), "ERR_ZERO_ADDRESS");
await expectRevert(FeeSharingProxy.new(account3, ZERO_ADDRESS), "ERR_ZERO_ADDRESS");
await expectRevert(FeeSharingProxy.new(ZERO_ADDRESS, ZERO_ADDRESS), "ERR_ZERO_ADDRESS");
});

Expand Down
199 changes: 0 additions & 199 deletions tests/vesting/SVRTest.js

This file was deleted.

0 comments on commit b2d1347

Please sign in to comment.