Update implemented toString function

This commit is contained in:
Lev
2021-06-12 18:54:00 -05:00
parent 311261ba04
commit e6198d6d48

View File

@ -14,6 +14,7 @@ void MerkelMain::init()
{
int input;
currentTime = orderBook.getEarliestTime();
wallet.insertCurrency("BTC", 10);
while(true)
{
printMenu();
@ -100,6 +101,7 @@ void MerkelMain::enterBid()
void MerkelMain::printWallet()
{
std::cout << "Your wallet is empty. " << std::endl;
std::cout << wallet.toString() << std::endl;
}
void MerkelMain::gotoNextTimeframe()