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
Merge branch 'leo-variable-min-w-amount' into 'master'
feat(ckBTC) Variable minimum retrieval amount.
There is the risk that the median fee rate may become so large that the fee exceeds the minimum retrieve amount of 100,000 satoshi.
This problem can be addressed by making the minimum retrieve amount dependent on the current median fee rate. As outlined here, a solution is to introduce a “buffer” so that the minimum retrieve amount is always considerably larger than the fee in practice:
`min_retrieve_amount = ((22_100 + 221 * median_fee_rate + 305 + 2000) / 50_000) * 50_000 + 100_000`
Closes FI-730.
Closes FI-730
See merge request dfinity-lab/public/ic!12536
0 commit comments