Skip to content

Commit

Permalink
speed up withdrawLiquidity status update
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoch05 committed Oct 9, 2024
1 parent 00c5054 commit bbf7e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apollo/src/lnv3/lnv3.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ export class Lnv3Service implements OnModuleInit {
async fetchWithdrawCacheStatus(transfer: PartnerT2, index: number) {
const cache = this.fetchCache[index];
cache.waitingWithdrawInterval += 1;
if (cache.waitingWithdrawInterval < 60) {
if (cache.waitingWithdrawInterval < 6) {
return;
}
cache.waitingWithdrawInterval = 0;
Expand Down

0 comments on commit bbf7e4a

Please sign in to comment.