mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +00:00
change to 2 second mining time (#234)
This commit is contained in:
parent
9552500335
commit
460cb52bac
2 changed files with 9 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ resource "aws_ecs_task_definition" "devnet_task_definition_group" {
|
||||||
# Please set it back to cpu 256 and memory of 2048 after sync is done to save the cost
|
# Please set it back to cpu 256 and memory of 2048 after sync is done to save the cost
|
||||||
# cpu = 256
|
# cpu = 256
|
||||||
# memory = 2048
|
# memory = 2048
|
||||||
cpu = 1024
|
cpu = 512
|
||||||
memory = 4096
|
memory = 4096
|
||||||
volume {
|
volume {
|
||||||
name = "efs"
|
name = "efs"
|
||||||
|
|
|
||||||
|
|
@ -118,6 +118,14 @@ var (
|
||||||
WaitPeriod: 10,
|
WaitPeriod: 10,
|
||||||
MinePeriod: 10,
|
MinePeriod: 10,
|
||||||
},
|
},
|
||||||
|
843800: {
|
||||||
|
SwitchRound: 843800,
|
||||||
|
CertThreshold: 73, // based on masternode is 108
|
||||||
|
TimeoutSyncThreshold: 5,
|
||||||
|
TimeoutPeriod: 25,
|
||||||
|
WaitPeriod: 2,
|
||||||
|
MinePeriod: 2,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
UnitTestV2Configs = map[uint64]*V2Config{
|
UnitTestV2Configs = map[uint64]*V2Config{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue