UT: retab test/config.js

This commit is contained in:
Arthur Britto
2012-10-04 17:40:10 -07:00
parent f7562efa85
commit ef81dd7caf

View File

@@ -9,57 +9,57 @@ exports.newcoind = path.join(process.cwd(), "newcoind");
// Configuration for servers. // Configuration for servers.
exports.servers = { exports.servers = {
// A local test server. // A local test server.
'alpha' : { 'alpha' : {
'trusted' : true, 'trusted' : true,
// "peer_ip" : "0.0.0.0", // "peer_ip" : "0.0.0.0",
// "peer_port" : 51235, // "peer_port" : 51235,
'rpc_ip' : "0.0.0.0", 'rpc_ip' : "0.0.0.0",
'rpc_port' : 5005, 'rpc_port' : 5005,
'websocket_ip' : "127.0.0.1", 'websocket_ip' : "127.0.0.1",
'websocket_port' : 6005, 'websocket_port' : 6005,
'validation_seed' : "shhDFVsmS2GSu5vUyZSPXYfj1r79h", 'validation_seed' : "shhDFVsmS2GSu5vUyZSPXYfj1r79h",
'validators' : "n9L8LZZCwsdXzKUN9zoVxs4YznYXZ9hEhsQZY7aVpxtFaSceiyDZ beta" 'validators' : "n9L8LZZCwsdXzKUN9zoVxs4YznYXZ9hEhsQZY7aVpxtFaSceiyDZ beta"
} }
}; };
// Configuration for test accounts. // Configuration for test accounts.
exports.accounts = { exports.accounts = {
// Users // Users
'alice' : { 'alice' : {
'account' : 'iG1QQv2nh2gi7RCZ1P8YYcBUKCCN633jCn', 'account' : 'iG1QQv2nh2gi7RCZ1P8YYcBUKCCN633jCn',
'passphrase' : 'alice', 'passphrase' : 'alice',
}, },
'bob' : { 'bob' : {
'account' : 'iPMh7Pr9ct699rZUTWaytJUoHcJ7cgyzrK', 'account' : 'iPMh7Pr9ct699rZUTWaytJUoHcJ7cgyzrK',
'passphrase' : 'bob', 'passphrase' : 'bob',
}, },
'carol' : { 'carol' : {
'account' : 'iH4KEcG9dEwGwpn6AyoWK9cZPLL4RLSmWW', 'account' : 'iH4KEcG9dEwGwpn6AyoWK9cZPLL4RLSmWW',
'passphrase' : 'carol', 'passphrase' : 'carol',
}, },
// Nexuses // Nexuses
'bitstamp' : { 'bitstamp' : {
'account' : 'i4jKmc2nQb5yEU6eycefrNKGHTU5NQJASx', 'account' : 'i4jKmc2nQb5yEU6eycefrNKGHTU5NQJASx',
'passphrase' : 'bitstamp', 'passphrase' : 'bitstamp',
}, },
'mtgox' : { 'mtgox' : {
'account' : 'iGrhwhaqU8g7ahwAvTq6rX5ivsfcbgZw6v', 'account' : 'iGrhwhaqU8g7ahwAvTq6rX5ivsfcbgZw6v',
'passphrase' : 'mtgox', 'passphrase' : 'mtgox',
}, },
// Merchants // Merchants
'amazon' : { 'amazon' : {
'account' : 'ihheXqX7bDnXePJeMHhubDDvw2uUTtenPd', 'account' : 'ihheXqX7bDnXePJeMHhubDDvw2uUTtenPd',
'passphrase' : 'amazon', 'passphrase' : 'amazon',
}, },
// Master account // Master account
'root' : { 'root' : {
'account' : 'iHb9CJAWyB4ij91VRWn96DkukG4bwdtyTh', 'account' : 'iHb9CJAWyB4ij91VRWn96DkukG4bwdtyTh',
'passphrase' : 'masterpassphrase', 'passphrase' : 'masterpassphrase',
}, },
}; };
// vim:ts=4 // vim:sw=2:sts=2:ts=8