Skip to content

Commit 3cc3721

Browse files
committed
chore: fix finality blocknum
1 parent 51be207 commit 3cc3721

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env_template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ EOSIO_FETCH_TRACES=true
1717
# fetch deltas true/false
1818
EOSIO_FETCH_DELTAS=true
1919
# number of blocks until tx is final
20-
EOSIO_NUM_BLOCKS_TO_FINALITY=180
20+
EOSIO_NUM_BLOCKS_TO_FINALITY=360
2121

2222
# unique client_id for interacting with Kafka
2323
KAFKA_CLIENT_ID=

src/common/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const EOSIO_CONFIG = {
1616
fetch_block: process.env.EOSIO_FETCH_BLOCK !== 'false',
1717
fetch_traces: process.env.EOSIO_FETCH_TRACES !== 'false',
1818
fetch_deltas: process.env.EOSIO_FETCH_DELTAS !== 'false',
19-
num_blocks_to_finality: Number(process.env.EOSIO_NUM_BLOCKS_TO_FINALITY || 180),
19+
num_blocks_to_finality: Number(process.env.EOSIO_NUM_BLOCKS_TO_FINALITY || 360),
2020
};
2121

2222
export const KAFKA_CONFIG: KafkaConfig = {

0 commit comments

Comments
 (0)