diff --git a/js/page/wallet.js b/js/page/wallet.js
index 3d60e7caa..79024f562 100644
--- a/js/page/wallet.js
+++ b/js/page/wallet.js
@@ -57,7 +57,7 @@ var SendToAddressSection = React.createClass({
return {
address: "",
amount: 0.0,
- balance: "Checking balance...",
+ balance: ,
results: "",
}
},
@@ -116,8 +116,8 @@ var WalletPage = React.createClass({
*/
getInitialState: function() {
return {
- balance: "Checking balance...",
- txlog: "Loading transactions...",
+ balance: ,
+ txlog: ,
}
},
componentWillMount: function() {
@@ -127,7 +127,7 @@ var WalletPage = React.createClass({
})
});
lbry.call('get_transaction_history', {}, (results) => {
- var out = 'Transaction history loaded.'
+ var out = '(You should never see this message. -- wallet.js WalletPage componentWillMount)'
if (results.length == 0) {
out = 'No transactions yet.';
} else {
@@ -189,4 +189,4 @@ var WalletPage = React.createClass({
);
}
-});
\ No newline at end of file
+});