Update example code.

This commit is contained in:
Eric Martindale 2014-10-02 22:33:22 -04:00
parent 75cf4c4f9a
commit 4dfe9fd13d
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ var Keypair = require('../lib/keypair');
var pubkeyhash = new Buffer('3c3fa3d4adcaf8f52d5b1843975e122548269937', 'hex');
var buf = Buffer.concat([new Buffer([0]), pubkeyhash]);
var keypair = new Keypair().fromString( buf.toString('hex') );
var keypair = new Keypair();
//var identity = new Identity().fromPubkey( keypair.pubkey );
var identity = new Identity().fromPubkey( keypair.pubkey );
console.log( 'pubkey', keypair.pubkey.toString() );