From 3210cd3ccf6a4a73ca6bed562cb96ca19ac3a220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=BA=C3=B1ez?= Date: Wed, 22 Jul 2020 11:58:50 +0200 Subject: [PATCH] Use the fast gas strategy as the default --- nucypher/blockchain/eth/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucypher/blockchain/eth/interfaces.py b/nucypher/blockchain/eth/interfaces.py index 52ef1cc6a..067fa7221 100644 --- a/nucypher/blockchain/eth/interfaces.py +++ b/nucypher/blockchain/eth/interfaces.py @@ -73,7 +73,7 @@ class BlockchainInterface: TIMEOUT = 600 # seconds # TODO: Correlate with the gas strategy - #2070 - DEFAULT_GAS_STRATEGY = 'medium' + DEFAULT_GAS_STRATEGY = 'fast' GAS_STRATEGIES = {'glacial': time_based.glacial_gas_price_strategy, # 24h 'slow': time_based.slow_gas_price_strategy, # 1h 'medium': time_based.medium_gas_price_strategy, # 5m