formatting

This commit is contained in:
Eric 2024-07-25 15:51:53 +10:00
parent 96f2dcaf3e
commit 6ab4849ac9
No known key found for this signature in database
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,10 @@ contract StateRetrieval {
_slotsPerHost[host].remove(SlotId.unwrap(slotId));
}
function _removeFromMyValidationSlots(uint16 groupIdx, SlotId slotId) internal {
function _removeFromMyValidationSlots(
uint16 groupIdx,
SlotId slotId
) internal {
_slotsPerValidator[groupIdx].remove(SlotId.unwrap(slotId));
}
}