Use symmetric difference iterator #11
@ -45,7 +45,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
path: ./plugeth-statediff
|
path: ./plugeth-statediff
|
||||||
# TODO: replace with release
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: cerc-io/plugeth
|
repository: cerc-io/plugeth
|
||||||
|
@ -38,7 +38,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
test_helpers.SilenceLogs()
|
test_helpers.QuietLogs()
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -41,7 +41,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
test_helpers.SilenceLogs()
|
test_helpers.QuietLogs()
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestServiceLoop(t *testing.T) {
|
func TestServiceLoop(t *testing.T) {
|
||||||
|
@ -6,9 +6,9 @@ import (
|
|||||||
"github.com/cerc-io/plugeth-statediff/utils/log"
|
"github.com/cerc-io/plugeth-statediff/utils/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// SilenceLogs silences the geth logs and sets the plugin test log level to "warning"
|
// QuietLogs silences the geth logs and sets the plugin test log level to "warning"
|
||||||
// The geth sync logs are noisy, so it can be nice to silence them.
|
// The geth sync logs are noisy, so it can be nice to silence them.
|
||||||
func SilenceLogs() {
|
func QuietLogs() {
|
||||||
geth_log.Root().SetHandler(geth_log.DiscardHandler())
|
geth_log.Root().SetHandler(geth_log.DiscardHandler())
|
||||||
log.TestLogger.SetLevel(2)
|
log.TestLogger.SetLevel(2)
|
||||||
}
|
}
|
||||||
|
@ -177,7 +177,7 @@ func TestSymmetricDifferenceIterator(t *testing.T) {
|
|||||||
// compare the paths traversed by the geth difference iterator and symmetric difference iterator
|
// compare the paths traversed by the geth difference iterator and symmetric difference iterator
|
||||||
// within a sample of mainnet data.
|
// within a sample of mainnet data.
|
||||||
func TestCompareDifferenceIterators(t *testing.T) {
|
func TestCompareDifferenceIterators(t *testing.T) {
|
||||||
test_helpers.SilenceLogs()
|
test_helpers.QuietLogs()
|
||||||
|
|
||||||
db := rawdb.NewMemoryDatabase()
|
db := rawdb.NewMemoryDatabase()
|
||||||
core.DefaultGenesisBlock().MustCommit(db)
|
core.DefaultGenesisBlock().MustCommit(db)
|
||||||
|
Loading…
Reference in New Issue
Block a user