Skip to content

Commit 65ce48e

Browse files
committed
fix: updated the oracle stream prices script to send the oracle type always in lowercase
1 parent b09a7a0 commit 65ce48e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/exchange_client/oracle_rpc/1_StreamPrices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async def main() -> None:
2929

3030
base_symbol = market.oracle_base
3131
quote_symbol = market.oracle_quote
32-
oracle_type = market.oracle_type
32+
oracle_type = market.oracle_type.lower()
3333

3434
task = asyncio.get_event_loop().create_task(
3535
client.listen_oracle_prices_updates(

0 commit comments

Comments
 (0)