Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-malene committed Jan 13, 2025
1 parent 3ce05ab commit 3fd1932
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion integration/contractdeployer/contract_deployer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func creatTenNetwork(t *testing.T, startPort int) {
wallets := params.NewSimWallets(1, numberOfNodes, integration.EthereumChainID, integration.TenChainID)
simParams := params.SimParams{
NumberOfNodes: numberOfNodes,
AvgBlockDuration: 1 * time.Second,
AvgBlockDuration: 2 * time.Second,
MgmtContractLib: ethereummock.NewMgmtContractLibMock(),
ERC20ContractLib: ethereummock.NewERC20ContractLibMock(),
Wallets: wallets,
Expand Down
2 changes: 1 addition & 1 deletion integration/faucet/faucet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func createObscuroNetwork(t *testing.T, startPort int) {
wallets := params.NewSimWallets(1, numberOfNodes, integration.EthereumChainID, integration.TenChainID)
simParams := params.SimParams{
NumberOfNodes: numberOfNodes,
AvgBlockDuration: 1 * time.Second,
AvgBlockDuration: 2 * time.Second,
MgmtContractLib: ethereummock.NewMgmtContractLibMock(),
ERC20ContractLib: ethereummock.NewERC20ContractLibMock(),
Wallets: wallets,
Expand Down
2 changes: 1 addition & 1 deletion integration/simulation/simulation_full_network_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestFullNetworkMonteCarloSimulation(t *testing.T) {

simParams := &params.SimParams{
NumberOfNodes: numberOfNodes,
AvgBlockDuration: 1 * time.Second,
AvgBlockDuration: 2 * time.Second,
SimulationTime: 120 * time.Second,
L1EfficiencyThreshold: 0.2,
Wallets: wallets,
Expand Down
2 changes: 1 addition & 1 deletion integration/simulation/simulation_geth_in_mem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func TestGethSimulation(t *testing.T) {

simParams := &params.SimParams{
NumberOfNodes: numberOfNodes,
AvgBlockDuration: 1 * time.Second,
AvgBlockDuration: 2 * time.Second,
SimulationTime: 35 * time.Second,
L1EfficiencyThreshold: 0.2,
Wallets: wallets,
Expand Down
2 changes: 1 addition & 1 deletion integration/tengateway/tengateway_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ func createTenNetwork(t *testing.T, startPort int) {
wallets := params.NewSimWallets(1, numberOfNodes, integration.EthereumChainID, integration.TenChainID)
simParams := params.SimParams{
NumberOfNodes: numberOfNodes,
AvgBlockDuration: 1 * time.Second,
AvgBlockDuration: 2 * time.Second,
MgmtContractLib: ethereummock.NewMgmtContractLibMock(),
ERC20ContractLib: ethereummock.NewERC20ContractLibMock(),
Wallets: wallets,
Expand Down
2 changes: 1 addition & 1 deletion integration/tenscan/tenscan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ func createTenNetwork(t *testing.T, startPort int) {
wallets := params.NewSimWallets(1, 1, integration.EthereumChainID, integration.TenChainID)
simParams := params.SimParams{
NumberOfNodes: 1,
AvgBlockDuration: 1 * time.Second,
AvgBlockDuration: 2 * time.Second,
MgmtContractLib: ethereummock.NewMgmtContractLibMock(),
ERC20ContractLib: ethereummock.NewERC20ContractLibMock(),
Wallets: wallets,
Expand Down

0 comments on commit 3fd1932

Please sign in to comment.