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
This means if amount pending delegations is > limit in dels, err := ce.cc.QueryPendingDelegations(limit) call, covenant fails to move forward to sign next delegations.
Example:
Currently there is 1000 pending delegations in the system, covnenat already signed first 100 and it has limit set to 100 . Unless amount of pending delegation start decreasing, covenant will fail to move past first 100 delegations.
Actions:
QueryPendingDelegations should return delegations which are not already signed and that expect covenant memver signature.
The text was updated successfully, but these errors were encountered:
Currently query loop of covenant emulator always retrieve only one batch of pending delegations: https://github.com/babylonlabs-io/covenant-emulator/blob/v0.11.2/covenant/covenant.go#L480
This means if amount pending delegations is >
limit
indels, err := ce.cc.QueryPendingDelegations(limit)
call, covenant fails to move forward to sign next delegations.Example:
Currently there is
1000
pending delegations in the system, covnenat already signed first100
and it has limit set to100
. Unless amount of pending delegation start decreasing, covenant will fail to move past first100
delegations.Actions:
QueryPendingDelegations
should return delegations which are not already signed and that expect covenant memver signature.The text was updated successfully, but these errors were encountered: