File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
integration-tests/src/test/java/org/web3j/protocol/geth Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -35,21 +35,22 @@ public class GethIT {
35
35
public GethIT () {}
36
36
37
37
@ BeforeEach
38
- public void setUp () {
38
+ public void setUp () throws InterruptedException {
39
+ Thread .sleep (10000 );
39
40
this .web3j = Geth .build (new HttpService ());
40
41
}
41
42
42
43
@ Test // Method not Implemented.
43
44
public void testWeb3ClientVersion () throws Exception {
44
- Thread .sleep (4000 );
45
+ Thread .sleep (10000 );
45
46
TxPoolContent content = web3j .txPoolContent ().send ();
46
47
assertNotNull (content .getResult ());
47
48
}
48
49
49
50
@ Test
50
51
@ Disabled ("Deprecated. Replaced by Clef's equivalent method - 'account_new'" )
51
52
public void testPersonalAccountCreation () throws Exception {
52
- Thread .sleep (4000 );
53
+ Thread .sleep (10000 );
53
54
Admin admin = Admin .build (new HttpService ());
54
55
NewAccountIdentifier accountId = admin .personalNewAccount ("web3j-geth-IT" ).send ();
55
56
assertFalse (accountId .getResult ().isEmpty ());
You can’t perform that action at this time.
0 commit comments