From 15dbbb2de9dd122aa4e6ee002d7887544352d8d9 Mon Sep 17 00:00:00 2001 From: bpaunescu Date: Tue, 21 Nov 2017 12:03:51 +0000 Subject: [PATCH] remove NodeState and nodeStateObservable remnants (#2102) --- .../src/main/kotlin/net/corda/node/shell/RPCOpsWithContext.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/node/src/main/kotlin/net/corda/node/shell/RPCOpsWithContext.kt b/node/src/main/kotlin/net/corda/node/shell/RPCOpsWithContext.kt index 75a17d7486..31a15d89f6 100644 --- a/node/src/main/kotlin/net/corda/node/shell/RPCOpsWithContext.kt +++ b/node/src/main/kotlin/net/corda/node/shell/RPCOpsWithContext.kt @@ -56,10 +56,6 @@ class RPCOpsWithContext(val cordaRPCOps: CordaRPCOps, val invocationContext:Invo return RPCContextRunner(invocationContext, rpcPermissions) { cordaRPCOps.queryAttachments(query, sorting) }.get().getOrThrow() } - override fun nodeStateObservable(): Observable { - return RPCContextRunner(invocationContext, rpcPermissions) { cordaRPCOps.nodeStateObservable() }.get().getOrThrow() - } - override fun vaultTrackByWithSorting(contractStateType: Class, criteria: QueryCriteria, sorting: Sort): DataFeed, Vault.Update> { return RPCContextRunner(invocationContext, rpcPermissions) { cordaRPCOps.vaultTrackByWithSorting(contractStateType, criteria, sorting) }.get().getOrThrow() }