e9630a85f4
This brings the project up to geth v1.12.0 The plugeth test plugin has been added but is failing on the live tracer hooks as of this commit
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package hashdb
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/log"
|
|
"github.com/ethereum/go-ethereum/plugins"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/openrelayxyz/plugeth-utils/core"
|
|
)
|
|
|
|
func PluginPreTrieCommit(pl *plugins.PluginLoader, node common.Hash) {
|
|
fnList := pl.Lookup("PreTrieCommit", func(item interface{}) bool {
|
|
_, ok := item.(func(core.Hash))
|
|
return ok
|
|
})
|
|
for _, fni := range fnList {
|
|
if fn, ok := fni.(func(core.Hash)); ok {
|
|
fn(core.Hash(node))
|
|
}
|
|
}
|
|
}
|
|
|
|
func pluginPreTrieCommit(node common.Hash) {
|
|
if plugins.DefaultPluginLoader == nil {
|
|
log.Warn("Attempting PreTrieCommit, but default PluginLoader has not been initialized")
|
|
return
|
|
}
|
|
PluginPreTrieCommit(plugins.DefaultPluginLoader, node)
|
|
}
|
|
|
|
func PluginPostTrieCommit(pl *plugins.PluginLoader, node common.Hash) {
|
|
fnList := pl.Lookup("PostTrieCommit", func(item interface{}) bool {
|
|
_, ok := item.(func(core.Hash))
|
|
return ok
|
|
})
|
|
for _, fni := range fnList {
|
|
if fn, ok := fni.(func(core.Hash)); ok {
|
|
fn(core.Hash(node))
|
|
}
|
|
}
|
|
}
|
|
|
|
func pluginPostTrieCommit(node common.Hash) {
|
|
if plugins.DefaultPluginLoader == nil {
|
|
log.Warn("Attempting PostTrieCommit, but default PluginLoader has not been initialized")
|
|
return
|
|
}
|
|
PluginPostTrieCommit(plugins.DefaultPluginLoader, node)
|
|
}
|