Skip to content

Commit

Permalink
Support up-to-date dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantinullrich committed Aug 15, 2024
1 parent 9438a4d commit cc3092e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## 0.0.5

- Make getters less strict
- Support up-to-date dependencies

## 0.0.5

- Fix issues with normalization of French and Spanish

## 0.0.4
Expand Down
2 changes: 1 addition & 1 deletion lib/src/mnemonics/legacy/legacy_seed_lang.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class LegacySeedLang {
trimmedWords += words[i].substring(0, actualPrefixLength);
}

var checksum = trimmedWords.crc32code(Encoding.getByName('utf-8'));
var checksum = crc32code(trimmedWords, Encoding.getByName('utf-8'));
var index = (checksum % words.length);
return index;
}
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: polyseed
description: A pure dart implementation of the 16-word seed scheme for monero
version: 0.0.5
version: 0.0.6
homepage: https://cakelabs.com
repository: https://github.com/cake-tech/polyseed_dart
issue_tracker: https://github.com/cake-tech/polyseed_dart/issues
Expand All @@ -10,7 +10,7 @@ environment:

dependencies:
pointycastle: ^3.7.3
hashlib: ^1.12.0
hashlib: ^1.19.2
unorm_dart: ^0.3.0

dev_dependencies:
Expand Down

0 comments on commit cc3092e

Please sign in to comment.