Skip to content

Commit

Permalink
Removes Epirus specific code from Web3j (#1212)
Browse files Browse the repository at this point in the history
* Refactors epirus account code, adds test for Epirus Platform functionality

* fix failing test if no login token file

* Removes epirus specific code from web3j

* remove gradle lineS
  • Loading branch information
josh-richardson committed May 26, 2020
1 parent 677e612 commit 5877c30
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 111 deletions.
68 changes: 0 additions & 68 deletions core/src/main/java/org/web3j/account/LocalWeb3jAccount.java

This file was deleted.

9 changes: 0 additions & 9 deletions core/src/main/java/org/web3j/protocol/Web3j.java
Expand Up @@ -14,7 +14,6 @@

import java.util.concurrent.ScheduledExecutorService;

import org.web3j.account.LocalWeb3jAccount;
import org.web3j.protocol.core.Batcher;
import org.web3j.protocol.core.Ethereum;
import org.web3j.protocol.core.JsonRpc2_0Web3j;
Expand All @@ -23,14 +22,6 @@
/** JSON-RPC Request object building factory. */
public interface Web3j extends Ethereum, Web3jRx, Batcher {

static Web3j build() throws Exception {
return new JsonRpc2_0Web3j(LocalWeb3jAccount.getOnlineServicesHttpService(Network.MAINNET));
}

static Web3j build(Network network) throws Exception {
return new JsonRpc2_0Web3j(LocalWeb3jAccount.getOnlineServicesHttpService(network));
}

/**
* Construct a new Web3j instance.
*
Expand Down
34 changes: 0 additions & 34 deletions integration-tests/src/test/java/org/web3j/protocol/CloudIT.java

This file was deleted.

0 comments on commit 5877c30

Please sign in to comment.