remove read-only mode related code from integrations

This commit is contained in:
Amir Bandeali
2019-10-27 11:11:04 -07:00
parent 33a0c22021
commit 9312d5d9f7
3 changed files with 1 additions and 37 deletions

View File

@@ -138,11 +138,6 @@ blockchainTests('Deployment Manager', env => {
expect(isValid).to.be.true();
});
it('should have registered the read-only proxy in the staking proxy', async () => {
const readOnlyProxy = await deploymentManager.staking.stakingProxy.readOnlyProxy.callAsync();
expect(readOnlyProxy).to.be.eq(deploymentManager.staking.readOnlyProxy.address);
});
it('should have registered the staking contract in the staking proxy', async () => {
const stakingContract = await deploymentManager.staking.stakingProxy.stakingContract.callAsync();
expect(stakingContract).to.be.eq(deploymentManager.staking.stakingLogic.address);