compile: fix rpc typo

This commit is contained in:
sidhujag 2018-06-03 09:07:48 -07:00
parent e940607f12
commit 92583edfff
1 changed files with 3 additions and 3 deletions

View File

@ -30,11 +30,11 @@ import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class SyscoinPCWallet implements IWallet{
private static final Logger log = LoggerFactory.getLogger(SyscoinPCWallet.class);
public class SyscoinRPCWallet implements IWallet{
private static final Logger log = LoggerFactory.getLogger(SyscoinRPCWallet.class);
private static final String CRYPTO_CURRENCY = Currencies.SYS;
public SyscoinPCWallet(String rpcURL, String accountName) {
public SyscoinRPCWallet(String rpcURL, String accountName) {
this.rpcURL = rpcURL;
this.accountName = accountName;
}