Initial support for fetch newcoin.txt via https.

This commit is contained in:
Arthur Britto
2012-03-29 21:14:57 -07:00
parent c70bf8465f
commit 98d6065460
7 changed files with 513 additions and 18 deletions

View File

@@ -45,12 +45,18 @@ Application::Application() :
mPeerDoor(NULL), mRPCDoor(NULL)
{
theConfig.load();
}
extern const char *TxnDBInit[], *LedgerDBInit[], *WalletDBInit[], *HashNodeDBInit[], *NetNodeDBInit[];
extern int TxnDBCount, LedgerDBCount, WalletDBCount, HashNodeDBCount, NetNodeDBCount;
void Application::stop()
{
mIOService.stop();
std::cerr << "Stopped: " << mIOService.stopped() << std::endl;
}
void Application::run()
{
assert(mTxnDB==NULL);