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(), } }