Skip to content

Commit

Permalink
fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
farnyser committed Apr 3, 2024
1 parent 4f03cff commit 7165e7d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions connector/examples/combined_example_consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ async fn main() -> anyhow::Result<()> {
let filter_config = filter_config1;

grpc_plugin_source::process_events(
&config,
&filter_config,
config,
filter_config,
account_write_queue_sender,
slot_queue_sender,
metrics_tx.clone(),
Expand Down
4 changes: 2 additions & 2 deletions connector/examples/geyser_example_consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ async fn main() -> anyhow::Result<()> {
let filter_config = filter_config1;

grpc_plugin_source::process_events(
&config,
&filter_config,
config,
filter_config,
account_write_queue_sender,
slot_queue_sender,
metrics_tx.clone(),
Expand Down
4 changes: 2 additions & 2 deletions connector/examples/websocket_example_consumer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ async fn main() -> anyhow::Result<()> {
});

websocket_source::process_events(
&config,
&filter_config,
config,
filter_config,
account_write_queue_sender,
slot_queue_sender,
)
Expand Down

0 comments on commit 7165e7d

Please sign in to comment.