Compare commits

..

No commits in common. "1350929bca3bfcbe68bdea766ef015a4dc3911f3" and "a2055079d181f1238654bbbc6e1a35d61e2eba4b" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,7 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Set Repo Origin - name: Set Repo Origin
run: git remote set-url origin https://git.lumeweb.com/LumeWeb/relay.git run: git remote set origin https://git.lumeweb.com/LumeWeb/relay.git
- uses: webfactory/ssh-agent@v0.7.0 - uses: webfactory/ssh-agent@v0.7.0
with: with:
ssh-private-key: ${{ secrets.GITEA_SSH_KEY }} ssh-private-key: ${{ secrets.GITEA_SSH_KEY }}

View File

@ -3,11 +3,12 @@ import {
PluginAPI, PluginAPI,
RPCBroadcastRequest, RPCBroadcastRequest,
RPCBroadcastResponse, RPCBroadcastResponse,
RPCCacheItem,
RPCRequest, RPCRequest,
RPCResponse, RPCResponse,
} from "@lumeweb/interface-relay"; } from "@lumeweb/interface-relay";
import { getRpcByPeer } from "../modules/rpc"; import { getRpcByPeer } from "../modules/rpc";
import { get as getSwarm } from "../modules/swarm"; import { get as getSwarm, LUMEWEB_TOPIC_HASH } from "../modules/swarm";
import b4a from "b4a"; import b4a from "b4a";
import pTimeout, { ClearablePromise } from "p-timeout"; import pTimeout, { ClearablePromise } from "p-timeout";