From 330954e884baa441927cb74763532080cf6d0d0a Mon Sep 17 00:00:00 2001 From: Damian Nolan Date: Wed, 4 Dec 2024 11:05:47 +0100 Subject: [PATCH] fix(baseapp): set req.Time for ctx header info in ExtendVote (#22745) --- baseapp/abci.go | 1 + 1 file changed, 1 insertion(+) diff --git a/baseapp/abci.go b/baseapp/abci.go index 9bcdb2ea4e10..31d39d87acba 100644 --- a/baseapp/abci.go +++ b/baseapp/abci.go @@ -641,6 +641,7 @@ func (app *BaseApp) ExtendVote(_ context.Context, req *abci.ExtendVoteRequest) ( ChainID: app.chainID, Height: req.Height, Hash: req.Hash, + Time: req.Time, }) // add a deferred recover handler in case extendVote panics