aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/personal-message-manager-test.js
Commit message (Collapse)AuthorAgeFilesLines
* Whoops missed some modulesThomas Huang2017-05-051-2/+0
|
* Lint testsThomas Huang2017-05-051-25/+24
|
* Fixed encodingDan Finlay2017-03-081-1/+1
|
* Fix test nameDan Finlay2017-03-071-1/+1
|
* Fixed internal encoding test caseDan Finlay2017-03-071-1/+1
|
* Fix normalizeMsgData function to always return hex prefixedDan Finlay2017-03-071-2/+2
|
* Fix function namesDan Finlay2017-03-071-6/+6
|
* Render personal_sign messages as utf-8 textDan Finlay2017-03-071-1/+22
| | | | | | | | | | | Calls to `personal_sign` are now: - When hex encoded, preserved as hex encoded, but displayed as utf-8 text. - When not hex encoded, decoded as utf-8 text as hex for signing. - The messages proposed for signing are displayed as UTF-8 text. - When the message cannot be rendered as UTF-8 text, it is displayed as hexadecimal. Fixes #1173
* Move sigUtil and keyrings to external modulesDan Finlay2017-02-221-0/+89
These external modules now have their own test coverage and build enforcement. This allowed me to somewhat more easily add good tests around our personalSign strategy (held now in [eth-sig-util](https://github.com/flyswatter/eth-sig-util), and allow each of the keyrings to import that, etc.