@@ -73,7 +73,9 @@ func (c Callbacks) RegisterCallbacks() icqtypes.QueryCallbacks {
73
73
AddCallback ("validator" , Callback (ValidatorCallback )).
74
74
AddCallback ("rewards" , Callback (RewardsCallback )).
75
75
AddCallback ("delegations" , Callback (DelegationsCallback )).
76
+ AddCallback ("delegations_epoch" , Callback (DelegationsEpochCallback )).
76
77
AddCallback ("delegation" , Callback (DelegationCallback )).
78
+ AddCallback ("delegation_epoch" , Callback (DelegationEpochCallback )).
77
79
AddCallback ("distributerewards" , Callback (DistributeRewardsFromWithdrawAccount )).
78
80
AddCallback ("depositinterval" , Callback (DepositIntervalCallback )).
79
81
AddCallback ("deposittx" , Callback (DepositTxCallback )).
@@ -124,17 +126,25 @@ func RewardsCallback(k *Keeper, ctx sdk.Context, args []byte, query icqtypes.Que
124
126
125
127
// decrement waitgroup as we have received back the query
126
128
// (initially incremented in AfterEpochEnd)
127
- err = zone .DecrementWithdrawalWaitgroup (k .Logger (ctx ), 1 , "rewards callback" )
128
- if err != nil {
129
- return err
129
+ if err = zone .DecrementWithdrawalWaitgroup (k .Logger (ctx ), 1 , "rewards callback" ); err != nil {
130
+ // given that there _could_ be a backlog of message, we don't want to bail here, else they will remain undeliverable.
131
+ k . Logger ( ctx ). Error ( err . Error ())
130
132
}
131
133
132
134
k .Logger (ctx ).Debug ("QueryDelegationRewards callback" , "wg" , zone .GetWithdrawalWaitgroup (), "delegatorAddress" , rewardsQuery .DelegatorAddress , "zone" , query .ChainId )
133
135
134
136
return k .WithdrawDelegationRewardsForResponse (ctx , & zone , rewardsQuery .DelegatorAddress , args )
135
137
}
136
138
139
+ func DelegationsEpochCallback (k * Keeper , ctx sdk.Context , args []byte , query icqtypes.Query ) error {
140
+ return delegationsCallback (k , ctx , args , query , true )
141
+ }
142
+
137
143
func DelegationsCallback (k * Keeper , ctx sdk.Context , args []byte , query icqtypes.Query ) error {
144
+ return delegationsCallback (k , ctx , args , query , false )
145
+ }
146
+
147
+ func delegationsCallback (k * Keeper , ctx sdk.Context , args []byte , query icqtypes.Query , isEpoch bool ) error {
138
148
zone , found := k .GetZone (ctx , query .GetChainId ())
139
149
if ! found {
140
150
return fmt .Errorf ("no registered zone for chain id: %s" , query .GetChainId ())
@@ -152,10 +162,18 @@ func DelegationsCallback(k *Keeper, ctx sdk.Context, args []byte, query icqtypes
152
162
153
163
k .Logger (ctx ).Debug ("Delegations callback triggered" , "chain" , zone .ChainId )
154
164
155
- return k .UpdateDelegationRecordsForAddress (ctx , zone , delegationQuery .DelegatorAddr , args )
165
+ return k .UpdateDelegationRecordsForAddress (ctx , zone , delegationQuery .DelegatorAddr , args , isEpoch )
166
+ }
167
+
168
+ func DelegationEpochCallback (k * Keeper , ctx sdk.Context , args []byte , query icqtypes.Query ) error {
169
+ return delegationCallback (k , ctx , args , query , true )
156
170
}
157
171
158
172
func DelegationCallback (k * Keeper , ctx sdk.Context , args []byte , query icqtypes.Query ) error {
173
+ return delegationCallback (k , ctx , args , query , false )
174
+ }
175
+
176
+ func delegationCallback (k * Keeper , ctx sdk.Context , args []byte , query icqtypes.Query , isEpoch bool ) error {
159
177
zone , found := k .GetZone (ctx , query .GetChainId ())
160
178
if ! found {
161
179
return fmt .Errorf ("no registered zone for chain id: %s" , query .GetChainId ())
@@ -204,7 +222,7 @@ func DelegationCallback(k *Keeper, ctx sdk.Context, args []byte, query icqtypes.
204
222
return err
205
223
}
206
224
207
- return k .UpdateDelegationRecordForAddress (ctx , delegation .DelegatorAddress , delegation .ValidatorAddress , sdk .NewCoin (zone .BaseDenom , val .SharesToTokens (delegation .Shares )), & zone , true )
225
+ return k .UpdateDelegationRecordForAddress (ctx , delegation .DelegatorAddress , delegation .ValidatorAddress , sdk .NewCoin (zone .BaseDenom , val .SharesToTokens (delegation .Shares )), & zone , true , isEpoch )
208
226
}
209
227
210
228
func PerfBalanceCallback (k * Keeper , ctx sdk.Context , response []byte , query icqtypes.Query ) error {
@@ -622,9 +640,9 @@ func DelegationAccountBalanceCallback(k *Keeper, ctx sdk.Context, args []byte, q
622
640
}
623
641
624
642
k .Logger (ctx ).Info ("Received balance response for denom" , "denom" , coin .Denom )
625
- err = zone .DecrementWithdrawalWaitgroup (k .Logger (ctx ), 1 , "delegationaccountbalance callback" )
626
- if err != nil {
627
- return err
643
+ if err = zone .DecrementWithdrawalWaitgroup (k .Logger (ctx ), 1 , "delegationaccountbalance callback" ); err != nil {
644
+ // given that there _could_ be a backlog of message, we don't want to bail here, else they will remain undeliverable.
645
+ k . Logger ( ctx ). Error ( err . Error ())
628
646
}
629
647
630
648
// set the zone amount.
@@ -645,6 +663,12 @@ func DelegationAccountBalanceCallback(k *Keeper, ctx sdk.Context, args []byte, q
645
663
// if token is not valid for staking, then send to withdrawal account.
646
664
if valid , _ := zone .ValidateCoinsForZone (sdk .NewCoins (coin ), k .GetValidatorAddressesAsMap (ctx , zone .ChainId )); ! valid {
647
665
k .Logger (ctx ).Info ("token is not a valid staking token, so sending to withdrawal account for disbursal" , "chain" , zone .ChainId , "assets" , coin )
666
+ if zone .GetWithdrawalWaitgroup () == 0 {
667
+ k .Logger (ctx ).Info ("triggering redemption rate calc in lieu of delegation flush" )
668
+ if err := k .TriggerRedemptionRate (ctx , & zone ); err != nil {
669
+ return err
670
+ }
671
+ }
648
672
return k .SendToWithdrawal (ctx , & zone , zone .DelegationAddress , sdk .NewCoins (coin ))
649
673
}
650
674
@@ -660,7 +684,8 @@ func DelegationAccountBalancesCallback(k *Keeper, ctx sdk.Context, args []byte,
660
684
k .cdc .MustUnmarshal (args , & result )
661
685
662
686
if err := zone .DecrementWithdrawalWaitgroup (k .Logger (ctx ), 1 , "delegationaccountbalances callback" ); err != nil {
663
- return err
687
+ // given that there _could_ be a backlog of message, we don't want to bail here, else they will remain undeliverable.
688
+ k .Logger (ctx ).Error (err .Error ())
664
689
}
665
690
666
691
addressBytes , err := addressutils .AccAddressFromBech32 (zone .DelegationAddress .Address , zone .AccountPrefix )
0 commit comments