Bump deps, re-encode old addresses (#125)

This commit is contained in:
Jaco Greeff
2019-05-11 10:22:57 +02:00
committed by GitHub
parent bf43311e70
commit 989e6440b8
6 changed files with 35 additions and 34 deletions
+2 -1
View File
@@ -11,7 +11,8 @@ const MAX_PASS_LEN = 32;
function toHex (address: string): string {
return u8aToHex(
decodeAddress(address)
// When saving pre-checksum changes, ensure that we can decode
decodeAddress(address, true)
);
}