Compare commits

...

2 Commits

Author SHA1 Message Date
Derrick Hammer 1350929bca
ci: update git remote command 2023-04-20 03:53:15 -04:00
Derrick Hammer 3d64870f17
cleanup: remove unused imports 2023-04-19 23:31:36 -04:00
2 changed files with 2 additions and 3 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 origin https://git.lumeweb.com/LumeWeb/relay.git run: git remote set-url 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,12 +3,11 @@ 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, LUMEWEB_TOPIC_HASH } from "../modules/swarm"; import { get as getSwarm } from "../modules/swarm";
import b4a from "b4a"; import b4a from "b4a";
import pTimeout, { ClearablePromise } from "p-timeout"; import pTimeout, { ClearablePromise } from "p-timeout";