fix: queryDns needs to be dnsQuery
This commit is contained in:
parent
f793448e52
commit
1558d458cc
|
@ -13,8 +13,8 @@ export class HandshakeClient extends NetworkClient {
|
|||
public async query(method: string, params: any): Promise<Response> {
|
||||
return this.callModuleReturn("query", { method, params });
|
||||
}
|
||||
public async queryDns(fqdn: string, type: string): Promise<Response> {
|
||||
return this.callModuleReturn("queryDns", { fqdn, type });
|
||||
public async dnsQuery(fqdn: string, type: string): Promise<Response> {
|
||||
return this.callModuleReturn("dnsQuery", { fqdn, type });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue