Skip to content
This repository was archived by the owner on Apr 25, 2024. It is now read-only.

Commit 1923dad

Browse files
Wim van der Hambucko13
Wim van der Ham
authored andcommitted
fix(scriptexplorer): change the error message for spending from new wallet
For a new wallet no UTXO's can be found. This results in an uninformative error message. The message is now changed to having 0 balance. ISSUES: #172
1 parent 48a395e commit 1923dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ScriptExplorer/ScriptEntry.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class ScriptEntry extends React.Component {
228228
} else {
229229
this.setState({
230230
fetchedUTXOs: false,
231-
fetchUTXOsError: "Failed to fetch UTXOs.",
231+
fetchUTXOsError: "This address has a zero balance.",
232232
});
233233
}
234234
};

0 commit comments

Comments
 (0)