We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7e65c commit b11eda4Copy full SHA for b11eda4
src/common/config.ts
@@ -17,9 +17,7 @@ export const EOSIO_CONFIG = {
17
fetch_traces: process.env.EOSIO_FETCH_TRACES !== 'false',
18
fetch_deltas: process.env.EOSIO_FETCH_DELTAS !== 'false',
19
num_blocks_to_finality: Number(process.env.EOSIO_NUM_BLOCKS_TO_FINALITY || 360),
20
- irreversible_blocks_only: process.env.EOSIO_IRREVERSIBLE_BLOCKS_ONLY
21
- ? process.env.EOSIO_IRREVERSIBLE_BLOCKS_ONLY !== 'false'
22
- : false,
+ irreversible_blocks_only: process.env.EOSIO_IRREVERSIBLE_BLOCKS_ONLY === 'true',
23
};
24
25
export const KAFKA_CONFIG: KafkaConfig = {
0 commit comments