From ff2cc0aee41017b5cabd02f235d49244c3db86a7 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 18 Jan 2012 14:13:48 -0800 Subject: [PATCH] Create more funds in initial ledger. --- Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application.cpp b/Application.cpp index 75571699d..78dc6fb6c 100644 --- a/Application.cpp +++ b/Application.cpp @@ -78,7 +78,7 @@ void Application::run() // Temporary root account will be ["This is my payphrase."]:0 uint160 rootAddress=NewcoinAddress("MoXdEKxkG1FEwyuMia6Mbrja1SohefRvro").GetHash160(); - Ledger::pointer firstLedger(new Ledger(rootAddress, 1000000)); + Ledger::pointer firstLedger(new Ledger(rootAddress, 100000000)); firstLedger->setClosed(); firstLedger->setAccepted(); mMasterLedger.pushLedger(firstLedger);