From 4815fe2686560bdb32ded983fc276383c5df869b Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Fri, 27 Oct 2023 13:14:10 +0200 Subject: [PATCH] remove unused EndVerkleTransition in blockchain.go (#301) --- core/blockchain.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/blockchain.go b/core/blockchain.go index 27a74de822..e2274c03ce 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -2539,10 +2539,6 @@ func (bc *BlockChain) ReorgThroughVerkleTransition() { bc.stateCache.ReorgThroughVerkleTransition() } -func (bc *BlockChain) EndVerkleTransition() { - bc.stateCache.EndVerkleTransition() -} - func (bc *BlockChain) AddRootTranslation(originalRoot, translatedRoot common.Hash) { bc.stateCache.AddRootTranslation(originalRoot, translatedRoot) }