Use Ownable in VestingWallet instead of an immutable beneficiary (#4508)
Co-authored-by: Francisco Giordano <fg@frang.io>
This commit is contained in:
@ -59,7 +59,9 @@ contract('Create2', function (accounts) {
|
||||
addr: offChainComputed,
|
||||
});
|
||||
|
||||
expect(await VestingWallet.at(offChainComputed).then(instance => instance.beneficiary())).to.be.equal(other);
|
||||
const instance = await VestingWallet.at(offChainComputed);
|
||||
|
||||
expect(await instance.owner()).to.be.equal(other);
|
||||
});
|
||||
|
||||
it('deploys a contract with funds deposited in the factory', async function () {
|
||||
|
||||
Reference in New Issue
Block a user