Skip to content

Commit 5d72d36

Browse files
Fix minor doc comment
1 parent ea6fef7 commit 5d72d36

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sdk/src/program-manager.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ class ProgramManager {
268268
*
269269
* // Verify the transaction was successful.
270270
* setTimeout(async () => {
271-
* const transaction = await programManager.networkClient.getTransaction(tx.id());
272-
* assert(transaction.id() === tx.id());
271+
* const transaction = await programManager.networkClient.getTransaction(tx_id);
272+
* assert(transaction.id() === tx_id);
273273
* }, 20000);
274274
*/
275275
async deploy(
@@ -1309,6 +1309,7 @@ class ProgramManager {
13091309
* @param {string} staker_address Address of the staker who is claiming the credits
13101310
* @param {ExecuteOptions} options
13111311
* @returns {Promise<string>} The transaction id
1312+
*
13121313
* @example
13131314
* // Import the mainnet version of the sdk.
13141315
* import { AleoKeyProvider, ProgramManager } from "@provablehq/sdk/mainnet.js";

0 commit comments

Comments
 (0)