Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
amydevs committed Jul 25, 2024
1 parent 664a7ab commit 0b4498b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
3 changes: 0 additions & 3 deletions src/nodes/agent/handlers/NodesNetworkSignClaim.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import type {
AgentRPCRequestParams,
AgentRPCResponseResult,
HolePunchSignalMessage,
AddressMessage,
NetworkEntryRequestMessage,
AgentClaimMessage,
} from '../types';
import type NodeManager from '../../../nodes/NodeManager';
Expand Down
7 changes: 2 additions & 5 deletions src/nodes/agent/handlers/NodesNetworkVerifyClaim.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import type {
AgentRPCRequestParams,
AgentRPCResponseResult,
HolePunchSignalMessage,
AddressMessage,
NetworkEntryRequestMessage,
} from '../types';
import type NodeConnectionManager from '../../../nodes/NodeConnectionManager';
import type { Host, Port } from '../../../network/types';
Expand All @@ -20,11 +17,11 @@ class NodesNetworkAuthenticate extends UnaryHandler<
{
nodeConnectionManager: NodeConnectionManager;
},
AgentRPCRequestParams<NetworkEntryRequestMessage>,
AgentRPCRequestParams<{}>,
AgentRPCResponseResult<{}>
> {
public handle = async (
input: AgentRPCRequestParams<NetworkEntryRequestMessage>,
input: AgentRPCRequestParams<{}>,
_cancel,
meta: Record<string, JSONValue> | undefined,
): Promise<AgentRPCResponseResult<{}>> => {
Expand Down

0 comments on commit 0b4498b

Please sign in to comment.