set testnet delegation activation time

This commit is contained in:
pinardZ 2025-06-10 12:59:07 +08:00
parent 240cb5c156
commit ab12db56d3

View file

@ -69,6 +69,10 @@ var Defaults = Config{
RPCEVMTimeout: 5 * time.Second, RPCEVMTimeout: 5 * time.Second,
GPO: FullNodeGPO, GPO: FullNodeGPO,
RPCTxFeeCap: 1, // 1 ether RPCTxFeeCap: 1, // 1 ether
OverrideDelegationActivation: func() *uint64 {
var i uint64 = 1_749_902_400 // 2025-06-14 12:00:00 UTC
return &i
}(),
} }
//go:generate go run github.com/fjl/gencodec -type Config -formats toml -out gen_config.go //go:generate go run github.com/fjl/gencodec -type Config -formats toml -out gen_config.go