Skip to content

Commit

Permalink
Merge pull request #12 from randlabs/fix/missing-param
Browse files Browse the repository at this point in the history
Add missing parameter to example code
  • Loading branch information
Martin Picco authored Apr 18, 2022
2 parents 4138089 + 542c30a commit 4a332bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homepage",
"version": "1.1.3",
"version": "1.1.4",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
2 changes: 1 addition & 1 deletion src/components/PaymentTransactionOverrideSignerExample.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const signOptions: SignTransactionOptions = {
};
const myAlgoConnect = new MyAlgoConnect();
const signedTxn = await myAlgoConnect.signTransaction(txn.toByte());
const signedTxn = await myAlgoConnect.signTransaction(txn.toByte(), signOptions);
`;

function PaymentTransactionOverrideSignerExample(): JSX.Element {
Expand Down

0 comments on commit 4a332bd

Please sign in to comment.