Fix starting number of XNS.

This commit is contained in:
Arthur Britto
2012-06-02 02:04:46 -07:00
parent affe4445bd
commit f0e3383856
2 changed files with 6 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ void Application::run()
std::cerr << "Root master seed: " << rootSeedMaster.humanFamilySeed() << std::endl;
std::cerr << "Root account: " << rootAddress.humanAccountID() << std::endl;
Ledger::pointer firstLedger = boost::make_shared<Ledger>(rootAddress, 100000000);
Ledger::pointer firstLedger = boost::make_shared<Ledger>(rootAddress, SYSTEM_CURRENCY_START);
assert(!!firstLedger->getAccountState(rootAddress));
firstLedger->updateHash();
firstLedger->setClosed();