From 3e014d74d73246be369dd880ed799be8a76fc341 Mon Sep 17 00:00:00 2001 From: Farber98 Date: Tue, 10 Dec 2024 13:30:51 -0300 Subject: [PATCH] config change --- pkg/solana/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/solana/config/config.go b/pkg/solana/config/config.go index 202b8fca8..720b95cb1 100644 --- a/pkg/solana/config/config.go +++ b/pkg/solana/config/config.go @@ -18,7 +18,7 @@ var defaultConfigSet = Chain{ TxTimeout: config.MustNewDuration(time.Minute), // timeout for send tx method in client TxRetryTimeout: config.MustNewDuration(10 * time.Second), // duration for tx rebroadcasting to RPC node TxConfirmTimeout: config.MustNewDuration(30 * time.Second), // duration before discarding tx as unconfirmed. Set to 0 to disable discarding tx. - TxExpirationRebroadcast: ptr(false), // to enable rebroadcasting of expired transactions + TxExpirationRebroadcast: ptr(true), // to enable rebroadcasting of expired transactions TxRetentionTimeout: config.MustNewDuration(0 * time.Second), // duration to retain transactions after being marked as finalized or errored. Set to 0 to immediately drop transactions. SkipPreflight: ptr(true), // to enable or disable preflight checks Commitment: ptr(string(rpc.CommitmentConfirmed)),