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)),