Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integrationTests/chainSimulator/mempool/testutils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func startChainSimulator(t *testing.T, alterConfigsFunction func(cfg *config.Con
},
SupernovaRoundsPerEpoch: core.OptionalUint64{
HasValue: true,
Value: 100,
Value: 10,
},
ApiInterface: api.NewNoApiInterface(),
MinNodesPerShard: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ func startChainSimulator(
}
supernovaRoundsPerEpochOpt := core.OptionalUint64{
HasValue: true,
Value: roundsPerEpoch * 10,
Value: roundsPerEpoch,
}

cs, err := chainSimulator.NewChainSimulator(chainSimulator.ArgsChainSimulator{
Expand Down
4 changes: 2 additions & 2 deletions integrationTests/chainSimulator/simulate/simulate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func TestCostScDeploy(t *testing.T) {
}
supernovaRoundsPerEpochOpt := core.OptionalUint64{
HasValue: true,
Value: 200,
Value: 20,
}

cs, err := chainSimulator.NewChainSimulator(chainSimulator.ArgsChainSimulator{
Expand Down Expand Up @@ -113,7 +113,7 @@ func TestSimulateIntraShardTxWithGuardian(t *testing.T) {
}
supernovaRoundsPerEpochOpt := core.OptionalUint64{
HasValue: true,
Value: 200,
Value: 20,
}

cs, err := chainSimulator.NewChainSimulator(chainSimulator.ArgsChainSimulator{
Expand Down
4 changes: 2 additions & 2 deletions integrationTests/chainSimulator/staking/jail/jail_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func testChainSimulatorJailAndUnJail(t *testing.T, targetEpoch int32, nodeStatus
}
supernovaRoundsPerEpochOpt := core.OptionalUint64{
HasValue: true,
Value: 200,
Value: 20,
}

numOfShards := uint32(3)
Expand Down Expand Up @@ -171,7 +171,7 @@ func TestChainSimulator_FromQueueToAuctionList(t *testing.T) {
}
supernovaRoundsPerEpochOpt := core.OptionalUint64{
HasValue: true,
Value: 400,
Value: 40,
}

numOfShards := uint32(3)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func testChainSimulatorSimpleStake(t *testing.T, targetEpoch int32, nodesStatus
}
supernovaRoundsPerEpochOpt := core.OptionalUint64{
HasValue: true,
Value: 200,
Value: 20,
}

numOfShards := uint32(3)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var (
}
supernovaRoundsPerEpoch = core.OptionalUint64{
HasValue: true,
Value: 300,
Value: 30,
}
)

Expand Down
2 changes: 1 addition & 1 deletion integrationTests/chainSimulator/vm/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var (
}
SupernovaRoundsPerEpoch = core.OptionalUint64{
HasValue: true,
Value: 200,
Value: 20,
}

OneEGLD = big.NewInt(1000000000000000000)
Expand Down
Loading