From ca6da44d630c7073e7da7d5dbf724aeb9ca7e981 Mon Sep 17 00:00:00 2001 From: Roland Groen Date: Tue, 5 Nov 2024 18:15:16 +0100 Subject: [PATCH] Fix alignment of pkiValidator field Aligned the pkiValidator field with other struct fields for better readability. This change improves code consistency and maintains clean code standards. --- vdr/vdr.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vdr/vdr.go b/vdr/vdr.go index 859b02103..618e6eaef 100644 --- a/vdr/vdr.go +++ b/vdr/vdr.go @@ -80,8 +80,8 @@ type Module struct { storageInstance storage.Engine eventManager events.Event // migrations are registered functions to simplify testing - migrations []migration - pkiValidator pki.Validator + migrations []migration + pkiValidator pki.Validator // new style DID management didsubject.Manager