From 3dcee9f3ed739426cbf45616cd47279ea7640444 Mon Sep 17 00:00:00 2001 From: Zhong Qiu <36867992+zhongqiuwood@users.noreply.github.com> Date: Sun, 20 Nov 2022 15:42:13 +0800 Subject: [PATCH] Merge PR: DDS lastrun & bump version to v1.6.5.5(#2763) * dds lastrun * Version=v1.6.5.5 --- Makefile | 2 +- libs/tendermint/state/execution.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f741108073..53c8785abd 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ IGNORE_CHECK_GO=false install_rocksdb_version:=$(ROCKSDB_VERSION) -Version=v1.6.5.3 +Version=v1.6.5.5 CosmosSDK=v0.39.2 Tendermint=v0.33.9 Iavl=v0.14.3 diff --git a/libs/tendermint/state/execution.go b/libs/tendermint/state/execution.go index 7ddafdf2e8..2bcf2444e3 100644 --- a/libs/tendermint/state/execution.go +++ b/libs/tendermint/state/execution.go @@ -328,9 +328,10 @@ func (blockExec *BlockExecutor) runAbci(block *types.Block, deltaInfo *DeltaInfo if deltaInfo != nil { blockExec.logger.Info("Apply delta", "height", block.Height, "deltas-length", deltaInfo.deltaLen) - + t0 := time.Now() execBlockOnProxyAppWithDeltas(blockExec.proxyApp, block, blockExec.db) abciResponses = deltaInfo.abciResponses + duration = time.Now().Sub(t0) } else { pc := blockExec.prerunCtx if pc.prerunTx {