mirror of https://github.com/waku-org/js-waku.git
fix: nwaku's response differs from RFC but go-waku does not
This commit is contained in:
parent
10c32c84c8
commit
a7dc6936bc
|
@ -249,12 +249,19 @@ export class Nwaku {
|
||||||
async getAsymmetricKeyPair(): Promise<KeyPair> {
|
async getAsymmetricKeyPair(): Promise<KeyPair> {
|
||||||
this.checkProcess();
|
this.checkProcess();
|
||||||
|
|
||||||
const { seckey, pubkey } = await this.rpcCall<{
|
const { privateKey, publicKey, seckey, pubkey } = await this.rpcCall<{
|
||||||
seckey: string;
|
seckey: string;
|
||||||
pubkey: string;
|
pubkey: string;
|
||||||
|
privateKey: string;
|
||||||
|
publicKey: string;
|
||||||
}>("get_waku_v2_private_v1_asymmetric_keypair", []);
|
}>("get_waku_v2_private_v1_asymmetric_keypair", []);
|
||||||
|
|
||||||
|
// To be removed once https://github.com/vacp2p/rfc/issues/507 is fixed
|
||||||
|
if (seckey) {
|
||||||
return { privateKey: seckey, publicKey: pubkey };
|
return { privateKey: seckey, publicKey: pubkey };
|
||||||
|
} else {
|
||||||
|
return { privateKey, publicKey };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async postAsymmetricMessage(
|
async postAsymmetricMessage(
|
||||||
|
|
Loading…
Reference in New Issue