mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
c3e1cfdac8
* Pruning for: exec, log_index, tx_lookup, history stages * Pruning for: exec, log_index, tx_lookup, history stages * Pruning for: exec, log_index, tx_lookup, history stages * Pruning for: exec, log_index, tx_lookup, history stages * add tvm flag * save * db migration for storage mode add flag --prune= remove flag --storage-mode= add flag --experiments=tevm,... rename integration set_storage_mode to set_prune * fix * forward move of stages must skip everything before PruneTo * keep in db progress of prune method * keep in db progress of prune method * simplify logs * simplify logs * simplify logs * fix test * simplify logs * simplify logs * simplify logs * simplify logs * remove callTraceSet as dupsort use etl transform for txlookup prune remove some logs * cleanup tests a bit * print_stages and eth_sync to show prune progress * fix print_stages * add readme about --prune.to flag * more docs * add --prune.history.older and other flags support * fix migration on empty db * better toString * better toString
40 lines
970 B
Go
40 lines
970 B
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon/core"
|
|
"github.com/ledgerwatch/erigon/ethdb/kv"
|
|
)
|
|
|
|
func TestGetChainConfig(t *testing.T) {
|
|
db := kv.NewTestKV(t)
|
|
config, _, err := core.CommitGenesisBlock(db, core.DefaultGenesisBlock())
|
|
if err != nil {
|
|
t.Fatalf("setting up genensis block: %v", err)
|
|
}
|
|
|
|
tx, txErr := db.BeginRo(context.Background())
|
|
if txErr != nil {
|
|
t.Fatalf("error starting tx: %v", txErr)
|
|
}
|
|
defer tx.Rollback()
|
|
|
|
api := &BaseAPI{}
|
|
config1, err1 := api.chainConfig(tx)
|
|
if err1 != nil {
|
|
t.Fatalf("reading chain config: %v", err1)
|
|
}
|
|
if config.String() != config1.String() {
|
|
t.Fatalf("read different config: %s, expected %s", config1.String(), config.String())
|
|
}
|
|
config2, err2 := api.chainConfig(tx)
|
|
if err2 != nil {
|
|
t.Fatalf("reading chain config: %v", err2)
|
|
}
|
|
if config.String() != config2.String() {
|
|
t.Fatalf("read different config: %s, expected %s", config2.String(), config.String())
|
|
}
|
|
}
|