diff --git a/interface/src/commerce/CommerceLogging.cpp b/interface/src/commerce/CommerceLogging.cpp index d89c970f41..65102e9699 100644 --- a/interface/src/commerce/CommerceLogging.cpp +++ b/interface/src/commerce/CommerceLogging.cpp @@ -1,6 +1,6 @@ // // CommerceLogging.cpp -// interface/interface/src/commerce +// interface/src/commerce // // Created by Howard Stearns on 8/9/17. // Copyright 2017 High Fidelity, Inc. diff --git a/interface/src/commerce/CommerceLogging.h b/interface/src/commerce/CommerceLogging.h index cd1cf59df2..d641977872 100644 --- a/interface/src/commerce/CommerceLogging.h +++ b/interface/src/commerce/CommerceLogging.h @@ -1,6 +1,6 @@ // // CommerceLogging.h -// interface/src +// interface/src/commerce // // Created by Howard Stearns on 8/9/17. // Copyright 2017 High Fidelity, Inc. diff --git a/interface/src/commerce/Ledger.cpp b/interface/src/commerce/Ledger.cpp index df411bc876..0d9d780743 100644 --- a/interface/src/commerce/Ledger.cpp +++ b/interface/src/commerce/Ledger.cpp @@ -23,8 +23,8 @@ bool Ledger::buy(const QString& hfc_key, int cost, const QString& asset_id, cons transaction["asset_id"] = asset_id; transaction["inventory_key"] = inventory_key; transaction["inventory_buyer_username"] = buyerUsername; - QJsonDocument transctionDoc{ transaction }; - QString transactionString = transctionDoc.toJson(QJsonDocument::Compact); + QJsonDocument transactionDoc{ transaction }; + QString transactionString = transactionDoc.toJson(QJsonDocument::Compact); auto wallet = DependencyManager::get(); QString signature = wallet->signWithKey(transactionString, hfc_key);