Should not use deprecated constructor. Use Buffer.from.

This commit is contained in:
David Edwards 2018-11-06 11:00:35 +01:00
parent e4d0efd967
commit b7a9c960a2
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ import nacl from 'tweetnacl'
*/
export default function Ed25519Keypair(seed) {
const keyPair = seed ? nacl.sign.keyPair.fromSeed(seed) : nacl.sign.keyPair()
this.publicKey = base58.encode(new Buffer(keyPair.publicKey))
this.publicKey = base58.encode(Buffer.from(keyPair.publicKey))
// tweetnacl's generated secret key is the secret key + public key (resulting in a 64-byte buffer)
this.privateKey = base58.encode(new Buffer(keyPair.secretKey.slice(0, 32)))
this.privateKey = base58.encode(Buffer.from(keyPair.secretKey.slice(0, 32)))
}