Skip to content

Commit

Permalink
fix: 🐛 Recipients are not taken into account when signing with AWC
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed Dec 31, 2024
1 parent 07e205b commit 3ead169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RPCSignTransactionsCommandHandler extends RPCCommandHandler<
<awc.SignTransactionRequestData>[];
final transactions = dto.payload['transactions'];
for (final Map<String, dynamic> transaction in transactions) {
final tx = archethic.Transaction.fromJson(transaction);
final tx = archethic.Transaction.fromNodeRPC(transaction);
final rpcSignTransactionCommandData = awc.SignTransactionRequestData(
data: tx.data!,
version: tx.version,
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 @@ description: Fully decentralized and cryptocurrency non-custodial hot wallet tha

publish_to: "none" # Remove this line if you wish to publish to pub.dev

version: 4.2.0+605
version: 4.2.1+606

environment:
sdk: ">=3.5.0 <4.0.0"
Expand Down

0 comments on commit 3ead169

Please sign in to comment.