Skip to content

Commit

Permalink
fix parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-doobu committed Oct 11, 2024
1 parent 1ab6136 commit eba788a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib9c/Model/State/CombinationSlotState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ public bool ValidateV2(long blockIndex)
return blockIndex >= WorkCompleteBlockIndex;
}

public void Update(AttachmentActionResult result, long blockIndex, long unlockBlockIndex, int? petId = null)
public void Update(AttachmentActionResult result, long blockIndex, long workCompleteBlockIndex, int? petId = null)
{
Result = result;
WorkStartBlockIndex = blockIndex;
WorkCompleteBlockIndex = unlockBlockIndex;
WorkCompleteBlockIndex = workCompleteBlockIndex;
PetId = petId;
}

Expand Down

0 comments on commit eba788a

Please sign in to comment.