Updates network.js constant names

This commit is contained in:
Daniel Cousens 2014-04-17 05:43:34 +10:00
parent ed28c6adcf
commit f047afef2d
12 changed files with 68 additions and 58 deletions

View file

@ -7,7 +7,7 @@ function Wallet(seed, options) {
if (!(this instanceof Wallet)) { return new Wallet(seed, options); }
var options = options || {}
var network = options.network || 'mainnet'
var network = options.network || 'bitcoin'
// Stored in a closure to make accidental serialization less likely
var masterkey = null