Skip to content

Commit

Permalink
remove lingering deadline reference
Browse files Browse the repository at this point in the history
  • Loading branch information
EricBolten committed Dec 13, 2023
1 parent 42d31bb commit aada410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/axelarcork/keeper/query_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (k Keeper) QueryScheduledCorks(c context.Context, req *types.QueryScheduled

response := types.QueryScheduledCorksResponse{}

k.IterateScheduledAxelarCorks(ctx, config.Id, func(val sdk.ValAddress, blockHeight uint64, id []byte, cel common.Address, deadline uint64, cork types.AxelarCork) (stop bool) {
k.IterateScheduledAxelarCorks(ctx, config.Id, func(val sdk.ValAddress, blockHeight uint64, id []byte, cel common.Address, cork types.AxelarCork) (stop bool) {
response.Corks = append(response.Corks, &types.ScheduledAxelarCork{
Cork: &cork,
BlockHeight: blockHeight,
Expand Down

0 comments on commit aada410

Please sign in to comment.