*Unneeded parameter
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Derrick Hammer 2023-01-05 20:58:39 -05:00
parent 2ae556ad14
commit 5dee9aeed4
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const plugin: Plugin = {
api.registerMethod("get_topics", {
cacheable: false,
async handler(topic: string): Promise<string[]> {
async handler(): Promise<string[]> {
return [...api.swarm.peers.keys()];
},
});