You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the Issue
The current implementation of rate limiter comes with a sliding Window and a total Rate parameters. The gRPC query iterates on chains by a fixed order: BTC, Ethereum and others
Once the total cctxs' value has reached the total Rate of sliding Window, the BTC chain has the priority to take the funds because BTC chain is the 1st chain in list.
Expected Outcome
We should figure out a way to evenly release the funds across the chains when Rate is reached. Evenly releasing funds doesn't mean dividing total Rate by number of chains, it probably mean releasing funds according to cctx's creation height?
The text was updated successfully, but these errors were encountered:
Describe the Issue
The current implementation of rate limiter comes with a sliding
Window
and a totalRate
parameters. The gRPC query iterates on chains by a fixed order: BTC, Ethereum and othersOnce the total cctxs' value has reached the total
Rate
of slidingWindow
, the BTC chain has the priority to take the funds because BTC chain is the 1st chain in list.Expected Outcome
We should figure out a way to evenly release the funds across the chains when
Rate
is reached. Evenly releasing funds doesn't mean dividing totalRate
by number of chains, it probably mean releasing funds according to cctx's creation height?The text was updated successfully, but these errors were encountered: