Skip to content

Commit

Permalink
fix: update fn arg serialization, closes LEA-2166
Browse files Browse the repository at this point in the history
  • Loading branch information
fbwoolf committed Feb 21, 2025
1 parent cedfbd1 commit 611e177
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function transactionPayloadToTransactionRequest(
stacksTransaction.payload.contractAddress
);
transactionRequest.functionArgs = stacksTransaction.payload.functionArgs.map(arg =>
Buffer.from(serializeCV(arg)).toString('hex')
serializeCV(arg)
);
transactionRequest.functionName = stacksTransaction.payload.functionName.content;
break;
Expand Down

0 comments on commit 611e177

Please sign in to comment.