|
@@ -561,12 +561,12 @@ export class ElectionParametersProposalFixture implements Fixture {
|
|
|
const description: string = 'Testing validator count proposal ' + uuid().substring(0, 8)
|
|
|
const runtimeVoteFee: BN = this.apiWrapper.estimateVoteForProposalFee()
|
|
|
await this.apiWrapper.transferBalanceToAccounts(this.treasury, this.councilKeyPairs, runtimeVoteFee)
|
|
|
- const announcingPeriod: BN = await this.apiWrapper.getAnnouncingPeriod()
|
|
|
- const votingPeriod: BN = await this.apiWrapper.getVotingPeriod()
|
|
|
- const revealingPeriod: BN = await this.apiWrapper.getRevealingPeriod()
|
|
|
+ const announcingPeriod: BN = new BN(28800)
|
|
|
+ const votingPeriod: BN = new BN(14400)
|
|
|
+ const revealingPeriod: BN = new BN(14400)
|
|
|
const councilSize: BN = await this.apiWrapper.getCouncilSize()
|
|
|
const candidacyLimit: BN = await this.apiWrapper.getCandidacyLimit()
|
|
|
- const newTermDuration: BN = await this.apiWrapper.getNewTermDuration()
|
|
|
+ const newTermDuration: BN = new BN(144000)
|
|
|
const minCouncilStake: BN = await this.apiWrapper.getMinCouncilStake()
|
|
|
const minVotingStake: BN = await this.apiWrapper.getMinVotingStake()
|
|
|
|