Skip to content

Commit fa1bd32

Browse files
committed
#519 Query PAA certificates with subjectKeyId
Enable querying certs with subjectKeyId Add migration flow (from 2 to 3 version of `pki` module) Signed-off-by: Abdulbois <abdulbois.tursunov@dsr-corporation.com> Signed-off-by: Abdulbois <abdulbois123@gmail.com>
1 parent 6c6fb19 commit fa1bd32

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+3525
-326
lines changed

app/app.go

+7
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,13 @@ func New(
624624
},
625625
)
626626

627+
app.UpgradeKeeper.SetUpgradeHandler(
628+
"v1.3",
629+
func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
630+
return app.mm.RunMigrations(ctx, cfg, fromVM)
631+
},
632+
)
633+
627634
return app
628635
}
629636

0 commit comments

Comments
 (0)