Skip to content

Commit 648b418

Browse files
committed
Remove unnused config field
1 parent d04402a commit 648b418

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/agent/solana/exporter.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ pub struct Config {
101101
pub staleness_threshold: Duration,
102102
/// Maximum size of a batch
103103
pub max_batch_size: usize,
104-
/// Configuration for the Key Store
105-
pub key_store: key_store::Config,
106104
/// Capacity of the channel between the Exporter and the Transaction Monitor
107105
pub inflight_transactions_channel_capacity: usize,
108106
/// Configuration for the Transaction Monitor
@@ -121,7 +119,6 @@ impl Default for Config {
121119
publish_interval_duration: Duration::from_secs(1),
122120
staleness_threshold: Duration::from_secs(5),
123121
max_batch_size: 12,
124-
key_store: Default::default(),
125122
inflight_transactions_channel_capacity: 10000,
126123
transaction_monitor: Default::default(),
127124
// The largest transactions appear to be about ~12000 CUs. We leave ourselves some breathing room.

0 commit comments

Comments
 (0)