diff --git a/interface/resources/qml/hifi/commerce/wallet/WalletHome.qml b/interface/resources/qml/hifi/commerce/wallet/WalletHome.qml
index ff89f01943..9b244d66ca 100644
--- a/interface/resources/qml/hifi/commerce/wallet/WalletHome.qml
+++ b/interface/resources/qml/hifi/commerce/wallet/WalletHome.qml
@@ -212,7 +212,8 @@ Item {
RalewayRegular {
id: noActivityText;
- text: "No activity yet.
Looking for a little spending money?
Click the button below to apply for your free HFC!";
+ text: "The Wallet app is in closed Beta.
To request entry and receive free HFC, please contact " +
+ "info@highfidelity.com with your High Fidelity account username and the email address registered to that account.";
// Text size
size: 24;
// Style
diff --git a/interface/src/commerce/Ledger.cpp b/interface/src/commerce/Ledger.cpp
index ed862384dc..01c11347fd 100644
--- a/interface/src/commerce/Ledger.cpp
+++ b/interface/src/commerce/Ledger.cpp
@@ -43,7 +43,6 @@ QJsonObject Ledger::failResponse(const QString& label, QNetworkReply& reply) {
#define FailHandler(NAME) void Ledger::NAME##Failure(QNetworkReply& reply) { emit NAME##Result(failResponse(#NAME, reply)); }
#define Handler(NAME) ApiHandler(NAME) FailHandler(NAME)
Handler(buy)
-Handler(receiveAt)
Handler(balance)
Handler(inventory)
@@ -99,6 +98,7 @@ void Ledger::receiveAtSuccess(QNetworkReply& reply) {
wallet->setMustRegenerateKeypair(true);
}
}
+void Ledger::receiveAtFailure(QNetworkReply& reply) { failResponse("receiveAt", reply); }
bool Ledger::receiveAt(const QString& hfc_key, const QString& old_key, const QString& machine_fingerprint) {
auto accountManager = DependencyManager::get();
if (!accountManager->isLoggedIn()) {