Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
insumity committed Feb 5, 2024
1 parent 86c0d00 commit 09481b2
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions x/ccv/provider/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -1279,15 +1279,6 @@ func (k Keeper) GetToBeOptedIn(
return addresses
}

func (k Keeper) RemoveToBeOptedIn(
ctx sdk.Context,
chainID string,
providerAddr types.ProviderConsAddress,
) {
store := ctx.KVStore(k.storeKey)
store.Delete(types.ToBeOptedInKey(chainID, providerAddr))
}

func (k Keeper) SetToBeOptedOut(
ctx sdk.Context,
chainID string,
Expand Down Expand Up @@ -1331,12 +1322,3 @@ func (k Keeper) GetToBeOptedOut(

return addresses
}

func (k Keeper) RemoveToBeOptedOut(
ctx sdk.Context,
chainID string,
providerAddr types.ProviderConsAddress,
) {
store := ctx.KVStore(k.storeKey)
store.Delete(types.ToBeOptedOutKey(chainID, providerAddr))
}

0 comments on commit 09481b2

Please sign in to comment.