diff --git a/spec/app/ics-028-cross-chain-validation/methods.md b/spec/app/ics-028-cross-chain-validation/methods.md index 01a425f2f..dc4b8629f 100644 --- a/spec/app/ics-028-cross-chain-validation/methods.md +++ b/spec/app/ics-028-cross-chain-validation/methods.md @@ -842,7 +842,7 @@ function onChanOpenConfirm( // PCF: Provider Chain Function // implements governance proposal Handler function StopConsumerChainProposalHandler(p: StopConsumerChainProposal) { - if currentTimestamp() > p.stopTime { + if currentTimestamp() >= p.stopTime { // stop the consumer chain and do not lock the unbonding StopConsumerChain(p.chainId, false) } @@ -1917,4 +1917,4 @@ function DistributeRewards() { - For each token type defined as a pair `(denomination, amount)` in `ccvAccount`, a transfer token (as defined in [ICS 20](../ics-020-fungible-token-transfer/README.md)) is initiated. - `lastDistributionTransferHeight` is set to the current height. - **Error Condition** - - None. \ No newline at end of file + - None.