Is your feature request related to a problem? Please describe.
The current implementation of blockchain monitoring judges a "data synchronization delay" when the difference between the highestBlock and the currentBlock is more than 1.(it is defined by BLOCK_SYNC_REMAINING_THRESHOLD and the defualt value is 1.)
Is your feature request related to a problem? Please describe.
The current implementation of blockchain monitoring judges a "data synchronization delay" when the difference between the highestBlock and the currentBlock is more than 1.(it is defined by BLOCK_SYNC_REMAINING_THRESHOLD and the defualt value is 1.)
https://github.com/BoostryJP/ibet-Wallet-API/blob/2ee9d161506b2c92d990ffc8dfcdd106cfb51f84/app/config.py#L67-L69
This threshold is too strict.
Describe the solution you'd like
Change the default value of BLOCK_SYNC_REMAINING_THRESHOLD to 2 or more.