From 6974fe147501eedb7a30463dc002019bf8d0cb3b Mon Sep 17 00:00:00 2001 From: Aaron Craelius Date: Mon, 29 Jun 2020 16:48:41 -0400 Subject: [PATCH] Update ante handlers to use SignatureV2 (#6428) * Update ante handlers to use SignatureV2 * WIP on test fixes * WIP on test fixes * Debugging CLI Tests * CHANGELOG.md * CHANGELOG * Add missing tests for ante * Add tests for verify signatures * Update verify tests * Fix register codec issue * debug * Cleanup * Fix verify signature tests * Remove viper * remove keyring usage * Fix review changes * Fix simapp * Fix ante tests * Add reference issue * Add test for multisignature * Wrap sign error with sig * Fix verify sign test * Fix CHANGELOG.md Co-authored-by: sahith-narahari Co-authored-by: anilCSE Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Co-authored-by: Alexander Bezobchuk --- app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app.go b/app.go index d142f9a6a138..c6d606f5fafb 100644 --- a/app.go +++ b/app.go @@ -373,6 +373,7 @@ func NewSimApp( app.SetAnteHandler( ante.NewAnteHandler( app.AccountKeeper, app.BankKeeper, *app.IBCKeeper, ante.DefaultSigVerificationGasConsumer, + authtypes.LegacyAminoJSONHandler{}, ), ) app.SetEndBlocker(app.EndBlocker)