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
Hello @SimonHausdorf, yes you are right if we will put 1 confirmation or more it will raise an error if latest_block_number == height + min_confirmation. How do you want to change it?
When setting min_confirmation to 1 the following condition will be true even if the transaction already has 1 confirmation.
app/workers/daemons/blockchain.rb:22
bc.reload.height = 100
bc.min_confirmations = 1
bc_service.latest_block_number = 101
will be true because of equal so processing will be skipped.
The text was updated successfully, but these errors were encountered: