mirror of
https://github.com/0xfnzero/solana-streamer.git
synced 2026-08-18 03:18:05 +00:00
update version and rename files
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
use crate::error::ClientResult;
|
||||
use crate::instruction::logs_filter::{LogFilter, DexInstruction};
|
||||
use crate::instruction::logs_filters::{LogFilter, DexInstruction};
|
||||
|
||||
pub async fn process_logs<F>(
|
||||
signature: &str,
|
||||
|
||||
@@ -8,7 +8,7 @@ use anchor_client::solana_sdk::commitment_config::CommitmentConfig;
|
||||
use std::sync::Arc;
|
||||
use tokio::sync::mpsc;
|
||||
use tokio::task::JoinHandle;
|
||||
use futures_util::StreamExt;
|
||||
use futures::{future::BoxFuture, Future, StreamExt};
|
||||
|
||||
/// 订阅结果,包含订阅任务和取消订阅逻辑
|
||||
pub struct SubscriptionHandle {
|
||||
|
||||
@@ -12,15 +12,15 @@
|
||||
|
||||
pub mod logs_data;
|
||||
pub mod logs_parser;
|
||||
pub mod logs_filter;
|
||||
pub mod logs_event;
|
||||
pub mod logs_filters;
|
||||
pub mod logs_events;
|
||||
pub mod logs_process;
|
||||
pub mod logs_subscribe;
|
||||
|
||||
pub use logs_data::*;
|
||||
pub use logs_parser::*;
|
||||
pub use logs_filter::*;
|
||||
pub use logs_event::*;
|
||||
pub use logs_filters::*;
|
||||
pub use logs_events::*;
|
||||
pub use logs_process::*;
|
||||
pub use logs_subscribe::*;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user