Skip to content

Commit 4a332bd

Browse files
author
Martin Picco
authored
Merge pull request #12 from randlabs/fix/missing-param
Add missing parameter to example code
2 parents 4138089 + 542c30a commit 4a332bd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "homepage",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

src/components/PaymentTransactionOverrideSignerExample.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const signOptions: SignTransactionOptions = {
5656
};
5757
5858
const myAlgoConnect = new MyAlgoConnect();
59-
const signedTxn = await myAlgoConnect.signTransaction(txn.toByte());
59+
const signedTxn = await myAlgoConnect.signTransaction(txn.toByte(), signOptions);
6060
`;
6161

6262
function PaymentTransactionOverrideSignerExample(): JSX.Element {

0 commit comments

Comments
 (0)