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 1
1
## 0.0.5
2
2
3
+ - Make getters less strict
4
+ - Support up-to-date dependencies
5
+
6
+ ## 0.0.5
7
+
3
8
- Fix issues with normalization of French and Spanish
4
9
5
10
## 0.0.4
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class LegacySeedLang {
128
128
trimmedWords += words[i].substring (0 , actualPrefixLength);
129
129
}
130
130
131
- var checksum = trimmedWords. crc32code (Encoding .getByName ('utf-8' ));
131
+ var checksum = crc32code (trimmedWords, Encoding .getByName ('utf-8' ));
132
132
var index = (checksum % words.length);
133
133
return index;
134
134
}
Original file line number Diff line number Diff line change 1
1
name : polyseed
2
2
description : A pure dart implementation of the 16-word seed scheme for monero
3
- version : 0.0.5
3
+ version : 0.0.6
4
4
homepage : https://cakelabs.com
5
5
repository : https://github.com/cake-tech/polyseed_dart
6
6
issue_tracker : https://github.com/cake-tech/polyseed_dart/issues
@@ -10,7 +10,7 @@ environment:
10
10
11
11
dependencies :
12
12
pointycastle : ^3.7.3
13
- hashlib : ^1.12.0
13
+ hashlib : ^1.19.2
14
14
unorm_dart : ^0.3.0
15
15
16
16
dev_dependencies :
You can’t perform that action at this time.
0 commit comments