change default network to "Base"

...since it won't be used for the command-line (yet).
This commit is contained in:
Ryan X. Charles 2014-04-15 18:06:42 -03:00
commit 8166fa5c8e

2
API.js
View file

@ -12,7 +12,7 @@ API.prototype._init = function(opts) {
var Wallet = require('soop').load('./js/models/core/Wallet', {
Storage: opts.Storage || require('./test/mocks/FakeStorage'),
Network: opts.Network || require('./js/models/network/WebRTC'),
Network: opts.Network || require('./js/models/network/Base'),
Blockchain: opts.Blockchain || require('./js/models/blockchain/Insight')
});