File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11## 0.0.5
22
3+ - Make getters less strict
4+ - Support up-to-date dependencies
5+
6+ ## 0.0.5
7+
38- Fix issues with normalization of French and Spanish
49
510## 0.0.4
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class LegacySeedLang {
128128 trimmedWords += words[i].substring (0 , actualPrefixLength);
129129 }
130130
131- var checksum = trimmedWords. crc32code (Encoding .getByName ('utf-8' ));
131+ var checksum = crc32code (trimmedWords, Encoding .getByName ('utf-8' ));
132132 var index = (checksum % words.length);
133133 return index;
134134 }
Original file line number Diff line number Diff line change 11name : polyseed
22description : A pure dart implementation of the 16-word seed scheme for monero
3- version : 0.0.5
3+ version : 0.0.6
44homepage : https://cakelabs.com
55repository : https://github.com/cake-tech/polyseed_dart
66issue_tracker : https://github.com/cake-tech/polyseed_dart/issues
@@ -10,7 +10,7 @@ environment:
1010
1111dependencies :
1212 pointycastle : ^3.7.3
13- hashlib : ^1.12.0
13+ hashlib : ^1.19.2
1414 unorm_dart : ^0.3.0
1515
1616dev_dependencies :
You can’t perform that action at this time.
0 commit comments