From ec45ce6db49c6e14ff1b7b6eaac9a87b96c8d88f Mon Sep 17 00:00:00 2001 From: nolash Date: Sat, 6 Mar 2021 23:47:20 +0100 Subject: [PATCH] Fix type typo for task base --- apps/cic-eth/cic_eth/eth/tx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cic-eth/cic_eth/eth/tx.py b/apps/cic-eth/cic_eth/eth/tx.py index 20a4d784..2780faa7 100644 --- a/apps/cic-eth/cic_eth/eth/tx.py +++ b/apps/cic-eth/cic_eth/eth/tx.py @@ -513,7 +513,7 @@ def refill_gas(self, recipient_address, chain_str): return tx_send_gas_signed['raw'] -@celery_app.task(bind=True, base=(CriticalSQLAlchemyAndSignerTask,)) +@celery_app.task(bind=True, base=CriticalSQLAlchemyAndSignerTask) def resend_with_higher_gas(self, txold_hash_hex, chain_str, gas=None, default_factor=1.1): """Create a new transaction from an existing one with same nonce and higher gas price.