Skip to content

Commit

Permalink
fix: updated the oracle stream prices script to send the oracle type …
Browse files Browse the repository at this point in the history
…always in lowercase
  • Loading branch information
aarmoa committed Feb 17, 2025
1 parent b09a7a0 commit 65ce48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/exchange_client/oracle_rpc/1_StreamPrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def main() -> None:

base_symbol = market.oracle_base
quote_symbol = market.oracle_quote
oracle_type = market.oracle_type
oracle_type = market.oracle_type.lower()

task = asyncio.get_event_loop().create_task(
client.listen_oracle_prices_updates(
Expand Down

0 comments on commit 65ce48e

Please sign in to comment.