Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
otherview committed Sep 29, 2023
1 parent 6ba3814 commit 3fc9d52
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions integration/obscuroscan/obscuroscan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ const (
)

func TestObscuroscan(t *testing.T) {
//t.Skip("Commented it out until more testing is driven from this test")
startPort := integration.StartPortObscuroscanUnitTest
createObscuroNetwork(t, startPort)

Expand Down Expand Up @@ -204,10 +203,9 @@ func waitServerIsReady(serverAddr string) error {
// Creates a single-node Obscuro network for testing.
func createObscuroNetwork(t *testing.T, startPort int) {
// Create the Obscuro network.
numberOfNodes := 1
wallets := params.NewSimWallets(1, numberOfNodes, integration.EthereumChainID, integration.ObscuroChainID)
wallets := params.NewSimWallets(1, 1, integration.EthereumChainID, integration.ObscuroChainID)
simParams := params.SimParams{
NumberOfNodes: numberOfNodes,
NumberOfNodes: 1,
AvgBlockDuration: 1 * time.Second,
MgmtContractLib: ethereummock.NewMgmtContractLibMock(),
ERC20ContractLib: ethereummock.NewERC20ContractLibMock(),
Expand Down

0 comments on commit 3fc9d52

Please sign in to comment.