From fc8f4b9b8b8cfb79edff01a46847ad79f1bf0524 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 01da77d8e453..0d43cb989074 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) }