Skip to content

Commit

Permalink
v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed Dec 22, 2022
1 parent adbe330 commit 67a5c08
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
=========

#### Version 2.0.3 (2022-12-22)
* Fix sort public keys in authorizedPublicKeys

#### Version 2.0.2 (2022-12-20)
* Add timestamp, version properties in UnspentOutput model

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: archethic_lib_dart
description: Archethic dart library for Flutter for Node and Browser. This library aims to provide a easy way to create Archethic transaction and to send them over the network
homepage: https://github.com/archethic-foundation/libdart

version: 2.0.2
version: 2.0.3

environment:
sdk: '>=2.17.0 <3.0.0'
Expand Down
8 changes: 4 additions & 4 deletions test/transaction_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void main() {
<AuthorizedKey>[
AuthorizedKey(
publicKey:
'0001b1d3750edb9381c96b1a975a55b5b4e4fb37bfab104c10b0b6c9a00433ec4646',
'0001B1D3750EDB9381C96B1A975A55B5B4E4FB37BFAB104C10B0B6C9A00433EC4646',
encryptedSecretKey:
'00501fa2db78bcf8ceca129e6139d7e38bf0d61eb905441056b9ebe6f1d1feaf88',
)
Expand All @@ -57,7 +57,7 @@ void main() {
<Map<String, String>>[
<String, String>{
'publicKey':
'0001b1d3750edb9381c96b1a975a55b5b4e4fb37bfab104c10b0b6c9a00433ec4646',
'0001B1D3750EDB9381C96B1A975A55B5B4E4FB37BFAB104C10B0B6C9A00433EC4646',
'encryptedSecretKey':
'00501fa2db78bcf8ceca129e6139d7e38bf0d61eb905441056b9ebe6f1d1feaf88'
}
Expand Down Expand Up @@ -368,7 +368,7 @@ condition inherit: [
concatUint8List(<Uint8List>[
Uint8List.fromList(
hexToUint8List(
'0001b1d3750edb9381c96b1a975a55b5b4e4fb37bfab104c10b0b6c9a00433ec4646',
'0001B1D3750EDB9381C96B1A975A55B5B4E4FB37BFAB104C10B0B6C9A00433EC4646',
),
),
Uint8List.fromList(
Expand Down Expand Up @@ -487,7 +487,7 @@ condition inherit: [
<Map<String, String>>[
<String, String>{
'publicKey':
'0001b1d3750edb9381c96b1a975a55b5b4e4fb37bfab104c10b0b6c9a00433ec4646',
'0001B1D3750EDB9381C96B1A975A55B5B4E4FB37BFAB104C10B0B6C9A00433EC4646',
'encryptedSecretKey':
'00501fa2db78bcf8ceca129e6139d7e38bf0d61eb905441056b9ebe6f1d1feaf88'
}
Expand Down

0 comments on commit 67a5c08

Please sign in to comment.