We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95798b4 commit b0ce49dCopy full SHA for b0ce49d
packages/api-derive/src/tx/signingInfo.ts
@@ -74,7 +74,7 @@ function babeOrAuraPeriod (api: DeriveApi): BN | undefined {
74
const period = api.consts.babe?.expectedBlockTime ||
75
// this will be present ones https://github.com/paritytech/polkadot-sdk/pull/3732 is merged
76
(api.consts['aura'] as unknown as Aura)?.slotDuration ||
77
- api.consts.timestamp?.minimumPeriod;
+ api.consts.timestamp?.minimumPeriod.muln(2);
78
79
return !period.isZero() ? period : undefined;
80
}
0 commit comments