From 33c56f8cee5851713bee82f5827cda360c96c896 Mon Sep 17 00:00:00 2001 From: Kevin Pease Date: Wed, 24 Jul 2024 14:40:55 +0200 Subject: [PATCH] Change testnet testdata --- stellar_rust_sdk/src/order_book/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stellar_rust_sdk/src/order_book/mod.rs b/stellar_rust_sdk/src/order_book/mod.rs index cd60bc8..0855385 100644 --- a/stellar_rust_sdk/src/order_book/mod.rs +++ b/stellar_rust_sdk/src/order_book/mod.rs @@ -14,9 +14,9 @@ pub mod tests { use crate::horizon_client; use crate::order_book::prelude::{Asset, AssetType, DetailsRequest}; - const BIDS_N: &u32 = &4; + const BIDS_N: &u32 = &3; const BIDS_D: &u32 = &1; - const BIDS_PRICE: &str = "4.0000000"; + const BIDS_PRICE: &str = "3.0000000"; const ASKS_N: &u32 = &5; const ASKS_D: &u32 = &1; const ASKS_PRICE: &str = "5.0000000";