diff --git a/integration/networktest/tests/helpful/availability_test.go b/integration/networktest/tests/helpful/availability_test.go index 114a46cda9..1a4d659179 100644 --- a/integration/networktest/tests/helpful/availability_test.go +++ b/integration/networktest/tests/helpful/availability_test.go @@ -13,7 +13,7 @@ import ( "github.com/obscuronet/go-obscuro/integration/networktest/env" ) -const _testTimeSpan = 120 * time.Second +const _testTimeSpan = 20 * time.Second // basic test that verifies it can connect the L1 client and L2 client and sees block numbers increasing (useful to sanity check testnet issues etc.) func TestNetworkAvailability(t *testing.T) { @@ -21,7 +21,7 @@ func TestNetworkAvailability(t *testing.T) { networktest.Run( "network-availability", t, - env.DevTestnet(), + env.Testnet(), actions.RunOnlyAction(func(ctx context.Context, network networktest.NetworkConnector) (context.Context, error) { client, err := network.GetL1Client() if err != nil { diff --git a/tools/faucet/cmd/cli.go b/tools/faucet/cmd/cli.go index 7a042fbae0..b395823904 100644 --- a/tools/faucet/cmd/cli.go +++ b/tools/faucet/cmd/cli.go @@ -2,9 +2,10 @@ package main import ( "flag" - "github.com/ethereum/go-ethereum/params" "math/big" + "github.com/ethereum/go-ethereum/params" + "github.com/obscuronet/go-obscuro/tools/faucet/faucet" )