Skip to content

Commit

Permalink
Merge branch '1.x' into dependabot/npm_and_yarn/packages/web3-eth-acc…
Browse files Browse the repository at this point in the history
…ounts/elliptic-6.5.3
  • Loading branch information
frankiebee committed Oct 19, 2020
2 parents efdbd7e + 62cb124 commit 5b50273
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,4 +299,5 @@ Released with 1.0.0-beta.37 code base.

### Fixed

- Fixed decoding bytes and string parameters for logs emitted with solc 0.4.x (#3724, #3738)
- Fixed decoding bytes and string parameters for logs emitted with solc 0.4.x (#3724, #3738)
- Grammar changes to inputAddressFormatter error message
3 changes: 1 addition & 2 deletions packages/web3-core-helpers/src/formatters.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ var inputAddressFormatter = function (address) {
} else if (utils.isAddress(address)) {
return '0x' + address.toLowerCase().replace('0x', '');
}
throw new Error('Provided address "' + address + '" is invalid, the capitalization checksum test failed, or its an indrect IBAN address which can\'t be converted.');
throw new Error(`Provided address ${address} is invalid, the capitalization checksum test failed, or it's an indirect IBAN address which can't be converted.`);
};


Expand Down Expand Up @@ -508,4 +508,3 @@ module.exports = {
outputPostFormatter: outputPostFormatter,
outputSyncingFormatter: outputSyncingFormatter
};

0 comments on commit 5b50273

Please sign in to comment.