remove unused EndVerkleTransition in blockchain.go (#301)

This commit is contained in:
Guillaume Ballet 2023-10-27 13:14:10 +02:00
parent 4f9beb0526
commit 4815fe2686

View file

@ -2539,10 +2539,6 @@ func (bc *BlockChain) ReorgThroughVerkleTransition() {
bc.stateCache.ReorgThroughVerkleTransition() bc.stateCache.ReorgThroughVerkleTransition()
} }
func (bc *BlockChain) EndVerkleTransition() {
bc.stateCache.EndVerkleTransition()
}
func (bc *BlockChain) AddRootTranslation(originalRoot, translatedRoot common.Hash) { func (bc *BlockChain) AddRootTranslation(originalRoot, translatedRoot common.Hash) {
bc.stateCache.AddRootTranslation(originalRoot, translatedRoot) bc.stateCache.AddRootTranslation(originalRoot, translatedRoot)
} }