From 607587021277982dc471def041d4fb3e60819ce5 Mon Sep 17 00:00:00 2001 From: Valters Jansons Date: Fri, 22 Dec 2023 12:21:01 +0200 Subject: [PATCH] docs: Clarify genesis has timestamps for vesting (#2873) Previously, the documentation mentioned that start_time and end_time refer to blocks. This could be interpreted as saying start_time and end_time are block heights. However, `x/auth/vesting` documentation at https://docs.cosmos.network/v0.50/build/modules/auth/vesting clarifies these are block times. --- docs/resources/genesis.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/genesis.md b/docs/resources/genesis.md index 59ebfa16c1427..f848b0434dac5 100644 --- a/docs/resources/genesis.md +++ b/docs/resources/genesis.md @@ -113,8 +113,8 @@ Let us break down the parameters: - `original_vesting`: Vesting is natively supported by `gaia`. You can define an amount of token owned by the account that needs to be vested for a period of time before they can be transferred. Vested tokens can be delegated. Default value is `null`. - `delegated_free`: Amount of delegated tokens that can be transferred after they've been vested. Most of the time, will be `null` in genesis. - `delegated_vesting`: Amount of delegated tokens that are still vesting. Most of the time, will be `null` in genesis. -- `start_time`: Block at which the vesting period starts. `0` most of the time in genesis. -- `end_time`: Block at which the vesting period ends. `0` if no vesting for this account. +- `start_time`: Timestamp at which the vesting period starts. `0` most of the time in genesis. +- `end_time`: Timestamp at which the vesting period ends. `0` if no vesting for this account. ### Bank