Merge pull request #12 from 0glabs/delegate-staking

set testnet delegation activation time
This commit is contained in:
Pignard 2025-06-11 09:55:02 +08:00 committed by GitHub
commit 7c5bd265c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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