Skip to content

Commit

Permalink
Fix a trailing comma.
Browse files Browse the repository at this point in the history
  • Loading branch information
xclud committed Mar 5, 2024
1 parent 468a8d0 commit 64d94a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/src/core/transaction_signer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ Uint8List signTransactionRaw(
int? chainId = 1,
}) {
final encoded = transaction.getUnsignedSerialized(chainId: chainId);
final signature = c.signToEcSignature(encoded, chainId: chainId, isEIP1559: transaction.isEIP1559);
final signature = c.signToEcSignature(
encoded,
chainId: chainId,
isEIP1559: transaction.isEIP1559,
);

if (transaction.isEIP1559 && chainId != null) {
return uint8ListFromList(
Expand Down

0 comments on commit 64d94a0

Please sign in to comment.