Skip to content

Commit

Permalink
Fix #123
Browse files Browse the repository at this point in the history
Let's kill him properly this time
  • Loading branch information
janoside committed May 15, 2019
1 parent fce0b5d commit 256b465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/baseActionsRouter.js
Expand Up @@ -613,7 +613,7 @@ router.get("/address/:address", function(req, res, next) {
res.locals.addressObj = bitcoinjs.address.fromBase58Check(address);

} catch (err) {
if (!err.toString().startsWith("Non-base 58")) {
if (!err.toString().startsWith("Error: Non-base58 character")) {
res.locals.pageErrors.push(utils.logError("u3gr02gwef", err));
}

Expand Down

0 comments on commit 256b465

Please sign in to comment.