Skip to content

Commit 893caef

Browse files
committed
remove all warnings
1 parent 77506b1 commit 893caef

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

rust/src/jitter.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ use async_trait::async_trait;
44
use dashmap::DashMap;
55
use drift::state::user::{OrderStatus, User, UserStats};
66
use drift_sdk::{
7-
auction_subscriber::{AuctionSubscriber, AuctionSubscriberConfig}, constants::PROGRAM_ID as drift_program, event_emitter::Event, slot_subscriber::SlotSubscriber, types::{
7+
auction_subscriber::{AuctionSubscriber, AuctionSubscriberConfig},
8+
constants::PROGRAM_ID as drift_program,
9+
event_emitter::Event,
10+
types::{
811
CommitmentConfig,
912
MarketType,
1013
Order,
@@ -16,7 +19,7 @@ use solana_sdk::signature::Signature;
1619
use tokio::sync::mpsc::{self, Receiver, Sender};
1720
use tokio::task::JoinHandle;
1821

19-
use crate::jit_proxy_client::{self, JitIxParams, JitProxyClient};
22+
use crate::jit_proxy_client::{JitIxParams, JitProxyClient};
2023
use crate::JitResult;
2124

2225

@@ -35,7 +38,7 @@ fn log_details(order: &Order) {
3538
}
3639

3740
#[inline(always)]
38-
fn check_err(err: String, order_sig: String) -> Option<u8> {
41+
fn check_err(err: String, order_sig: String) -> Option<()> {
3942
if err.contains("0x1770") || err.contains("0x1771") {
4043
log::error!("Order: {} does not cross params yet, retrying", order_sig);
4144
None
@@ -47,10 +50,10 @@ fn check_err(err: String, order_sig: String) -> Option<u8> {
4750
None
4851
} else if err.contains("0x1772") {
4952
log::error!("Order: {} already filled", order_sig);
50-
Some(1)
53+
Some(())
5154
} else {
5255
log::error!("Error: {}", err);
53-
Some(2)
56+
Some(())
5457
}
5558
}
5659

@@ -61,7 +64,6 @@ pub struct JitParams {
6164
min_position: i64,
6265
max_position: i64,
6366
price_type: PriceType,
64-
sub_account_id: Option<u16>,
6567
}
6668

6769
impl JitParams {
@@ -71,15 +73,13 @@ impl JitParams {
7173
min_position: i64,
7274
max_position: i64,
7375
price_type: PriceType,
74-
sub_account_id: Option<u16>,
7576
) -> Self {
7677
Self {
7778
bid,
7879
ask,
7980
min_position,
8081
max_position,
8182
price_type,
82-
sub_account_id,
8383
}
8484
}
8585
}

rust/src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ async fn main() {
6969
-1_000_000,
7070
1_000_000,
7171
jit_proxy::state::PriceType::Oracle,
72-
None,
7372
);
7473

7574
let shotgun: Arc<dyn JitterStrategy + Send + Sync> = Arc::new(Shotgun { jit_proxy_client });

0 commit comments

Comments
 (0)