BlockParams contains limits on the block size.

interface BlockParamsAmino {
    max_bytes?: string;
    max_gas?: string;
    time_iota_ms?: string;
}

Properties

max_bytes?: string

Max block size, in bytes. Note: must be greater than 0

max_gas?: string

Max gas per block. Note: must be greater or equal to -1

time_iota_ms?: string

Minimum time increment between consecutive blocks (in milliseconds) If the block header timestamp is ahead of the system clock, decrease this value.

Not exposed to the application.