remove dead code

This commit is contained in:
howard-stearns 2017-08-18 14:08:04 -07:00
parent bd37679b65
commit 29b717e22d
2 changed files with 2 additions and 5 deletions

View file

@ -1,5 +1,5 @@
//
// Commerce.cpp
// QmlCommerce.cpp
// interface/src/commerce
//
// Created by Howard Stearns on 8/4/17.
@ -37,9 +37,6 @@ void QmlCommerce::buy(const QString& assetId, int cost, const QString& buyerUser
QString key = keys[0];
// For now, we receive at the same key that pays for it.
ledger->buy(key, cost, assetId, key, buyerUsername);
// FIXME: until we start talking to server, report post-transaction balance and inventory so we can see log for testing.
/*balance();
inventory();*/
}
void QmlCommerce::balance() {

View file

@ -1,5 +1,5 @@
//
// Commerce.h
// QmlCommerce.h
// interface/src/commerce
//
// Guard for safe use of Commerce (Wallet, Ledger) by authorized QML.