Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/main/java/net/corda/explorer/rpc/NodeRPCClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
@Component
public class NodeRPCClient {
private static final Logger logger = LoggerFactory.getLogger(NodeRPCClient.class);

private static CordaRPCOps rpcProxy;
private static Session sshSession;
private Map<String, String> partyKeyMap = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ public Vault.Page getVaultStates(VaultFilterSelection filter) throws ClassNotFou
new PageSpecification(filter.getOffset() + 1, filter.getPageSize());

/* ContractStateType Filters */
if(contractStateClassMap.size()==0){
getVaultFilters();
}
Set<Class<ContractState>> stateType = ImmutableSet.of(ContractState.class);
HashSet<Class<ContractState>> stateTypeSet = new HashSet<>();
if(filter.getStateTypes() != null && filter.getStateTypes().size() > 0){
Expand Down