@@ -159,7 +159,7 @@ class ProgramManager {
159
159
* programManager.setAccount(Account);
160
160
*
161
161
* // Define a fee in credits
162
- * const fee = 1.2 ;
162
+ * const priorityFee = 0.0 ;
163
163
*
164
164
* // Create the deployment transaction.
165
165
* const tx = await programManager.buildDeploymentTransaction(program, fee, false);
@@ -266,7 +266,7 @@ class ProgramManager {
266
266
* const programManager = new ProgramManager("https://api.explorer.provable.com/v1", keyProvider, recordProvider);
267
267
*
268
268
* // Define a fee in credits
269
- * const fee = 1.2 ;
269
+ * const priorityFee = 0.0 ;
270
270
*
271
271
* // Deploy the program
272
272
* const tx_id = await programManager.deploy(program, fee, false);
@@ -311,7 +311,7 @@ class ProgramManager {
311
311
* const tx = await programManager.buildExecutionTransaction({
312
312
* programName: "hello_hello.aleo",
313
313
* functionName: "hello_hello",
314
- * fee : 0.020 ,
314
+ * priorityFee : 0.0 ,
315
315
* privateFee: false,
316
316
* inputs: ["5u32", "5u32"],
317
317
* keySearchParams: { "cacheKey": "hello_hello:hello" }
@@ -435,7 +435,7 @@ class ProgramManager {
435
435
* const tx_id = await programManager.execute({
436
436
* programName: "hello_hello.aleo",
437
437
* functionName: "hello_hello",
438
- * fee : 0.020 ,
438
+ * priorityFee : 0.0 ,
439
439
* privateFee: false,
440
440
* inputs: ["5u32", "5u32"],
441
441
* keySearchParams: { "cacheKey": "hello_hello:hello" }
0 commit comments