From e46d98ca841173ee30ecc28158236a94b4b21b7e Mon Sep 17 00:00:00 2001 From: billy rennekamp Date: Wed, 24 Nov 2021 09:54:09 +0100 Subject: [PATCH] gaia: add NewSetUpContextDecorator to antedecorator --- CHANGELOG.md | 2 ++ app/ante_handler.go | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index da5f4ceeb09..40729a526a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,8 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] + * (gaia) Add NewSetUpContextDecorator to anteDecorators + ## [v6.0.0] - 2021-11-11 * (golang) Bump golang prerequisite to 1.17. diff --git a/app/ante_handler.go b/app/ante_handler.go index 429e22bb8d3..ccb3fac4fca 100644 --- a/app/ante_handler.go +++ b/app/ante_handler.go @@ -33,6 +33,7 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) { } anteDecorators := []sdk.AnteDecorator{ + ante.NewSetUpContextDecorator(), ante.NewRejectExtensionOptionsDecorator(), ante.NewMempoolFeeDecorator(), ante.NewValidateBasicDecorator(),