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
Reading the code. I noticed that this code takes the old addresses first and moves through them. what about my cases (40K+ addresses) is a very long time. and I have to wait a long time for it to reach the current addresses.
I suggest sorting DESC by creation date in order to take fresh addresses first
my problem. payment to me while my network was out of sync. After synchronization, I received a payment webhook. but usdt remained on the disposable wallet (more than 24 hours have passed). and I think what could be the problem is that strange addresses appeared first, not new ones
upd: I had to wait more than 2 days for my recent addresses to start being viewed. and money is debited from them to the current balance
The text was updated successfully, but these errors were encountered:
The Funds from one time to main account are moved at the time a new incoming transaction has been discovered https://github.com/vsys-host/tron-shkeeper/blob/a1644880eede28f72c4d23bdc8d9ea606069feea/app/block_scanner.py#L162 The task you referred to is used as a backup means to transfer from one time to main account, if for some reason the transfer at transaction discovery time failed. It isn't hard to change sorting, but I suggest you to check logs to see why the funds are not moved immediately once the transaction is discovered and webhook has been sent. The one reason of I can think of is that you don't have enough TRX on the main account.
There was enough TRX in the account. but at that time, the network was synchronizing 8000 blocks behind. and as it was noted to me, during the synchronization, while fullnode was online, the amount came to the wallet. that was during the Sichronization. The debit to the main account will be skipped. and it will be executed only during backup screening.
https://github.com/vsys-host/tron-shkeeper/blob/a1644880eede28f72c4d23bdc8d9ea606069feea/app/tasks.py#L167
Reading the code. I noticed that this code takes the old addresses first and moves through them. what about my cases (40K+ addresses) is a very long time. and I have to wait a long time for it to reach the current addresses.
I suggest sorting DESC by creation date in order to take fresh addresses first
my problem. payment to me while my network was out of sync. After synchronization, I received a payment webhook. but usdt remained on the disposable wallet (more than 24 hours have passed). and I think what could be the problem is that strange addresses appeared first, not new ones
upd: I had to wait more than 2 days for my recent addresses to start being viewed. and money is debited from them to the current balance
The text was updated successfully, but these errors were encountered: