From 4a8ea54f5db59f8e830d249fd87decf64a6c9774 Mon Sep 17 00:00:00 2001 From: Lucas Colombo Date: Thu, 23 May 2024 21:27:56 -0300 Subject: [PATCH] =?UTF-8?q?feat:=20=E2=9C=A8=20add=20quote=5Fasset=20to=20?= =?UTF-8?q?Ticker=20object?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/rustlers/rustler.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/rustlers/rustler.rs b/lib/rustlers/rustler.rs index a6b9290..bdf5b28 100644 --- a/lib/rustlers/rustler.rs +++ b/lib/rustlers/rustler.rs @@ -190,6 +190,7 @@ impl Default for RustlerOpts { pub struct Ticker { pub symbol: String, pub market: String, + pub quote_asset: Option, } impl Ticker { @@ -197,6 +198,7 @@ impl Ticker { Self { symbol: t.symbol.clone(), market: m.short_name.clone(), + quote_asset: t.quote_symbol.clone(), } }