Skip to content

Commit

Permalink
Correct property name in logWotSettingUpdated method
Browse files Browse the repository at this point in the history
  • Loading branch information
SailReal committed Jan 27, 2025
1 parent 475b2e8 commit cf49107
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ public void logVaultMemberUpdated(String updatedBy, UUID vaultId, String authori
auditEventRepository.persist(event);
}

public void logWotSettingUpdated(String userId, int wotIdVerifyLen, int wotMaxDepth) {
public void logWotSettingUpdated(String updatedBy, int wotIdVerifyLen, int wotMaxDepth) {
var event = new SettingWotUpdateEvent();
event.setTimestamp(Instant.now());
event.setWotIdVerifyLen(wotIdVerifyLen);
event.setWotMaxDepth(wotMaxDepth);
event.setUpdatedBy(userId);
event.setUpdatedBy(updatedBy);
auditEventRepository.persist(event);
}

Expand Down

0 comments on commit cf49107

Please sign in to comment.