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 {