From 29b717e22d98d2f494b50dbc5a899a3d49888424 Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Fri, 18 Aug 2017 14:08:04 -0700 Subject: [PATCH] remove dead code --- interface/src/commerce/QmlCommerce.cpp | 5 +---- interface/src/commerce/QmlCommerce.h | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/interface/src/commerce/QmlCommerce.cpp b/interface/src/commerce/QmlCommerce.cpp index abd0e52f78..b3d6a5e67a 100644 --- a/interface/src/commerce/QmlCommerce.cpp +++ b/interface/src/commerce/QmlCommerce.cpp @@ -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() { diff --git a/interface/src/commerce/QmlCommerce.h b/interface/src/commerce/QmlCommerce.h index bb067146ba..4112ab7177 100644 --- a/interface/src/commerce/QmlCommerce.h +++ b/interface/src/commerce/QmlCommerce.h @@ -1,5 +1,5 @@ // -// Commerce.h +// QmlCommerce.h // interface/src/commerce // // Guard for safe use of Commerce (Wallet, Ledger) by authorized QML.