Update added the canFulfillOrder function

This commit is contained in:
Lev
2021-06-12 22:32:57 -05:00
parent ae736454ec
commit c0552cb3b7
4 changed files with 20 additions and 9 deletions

View File

@ -8,15 +8,15 @@
int main()
{
//MerkelMain app{};
//app.init();
Wallet wallet;
wallet.insertCurrency("BTC", 10);
wallet.insertCurrency("USDT", 100.83);
std::cout << wallet.toString() << std::endl;
MerkelMain app{};
app.init();
// Wallet wallet;
// wallet.insertCurrency("BTC", 10);
// wallet.insertCurrency("USDT", 100.83);
// std::cout << wallet.toString() << std::endl;
//std::cout << "Wallet has BTC " << wallet.containsCurrency("USDT", 100.50) << std::endl;
wallet.removeCurrency("USDT", 10);
std::cout << wallet.toString() << std::endl;
// wallet.removeCurrency("USDT", 10);
// std::cout << wallet.toString() << std::endl;
//CSVReader::readCSV("20200317.csv");
}