Skip to content

Commit

Permalink
amend
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrimbda committed Feb 23, 2024
1 parent 60f15ae commit 5797942
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apps/vendor-ccxt/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,12 @@ interface IGeneralSpecificRelation {
//
map((v: Record<string, FundingRate>) => v[symbol]),
)
).pipe(repeat({ delay: 10_000 }), retry({ delay: 5000 }), shareReplay(1));
).pipe(
//
repeat({ delay: 10_000 }),
retry({ delay: 5000 }),
shareReplay(1),
);
});

terminal.provideTicks(EXCHANGE_ID, (product_id) => {
Expand Down

0 comments on commit 5797942

Please sign in to comment.