From f9cbcbeb2bb9c84abfbdf41817355ce640d678de Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Thu, 12 Dec 2013 17:46:39 +0100 Subject: [PATCH] missing BIP32_PRIME definition in bip32 tests. --- test/bip32.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/bip32.js b/test/bip32.js index 0c0f82a..2ccee37 100644 --- a/test/bip32.js +++ b/test/bip32.js @@ -6,6 +6,8 @@ var BIP32key = require('..').BIP32key; var hexToBytes = require('../').convert.hexToBytes; var bytesToString = require('../').convert.bytesToString; +var BIP32_PRIME = 0x80000000; + function checkKey(key, extPriv, extPub) { assert.equal(key.serialize(), extPriv); assert.equal(key.getPub().serialize(), extPub);