File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -364,6 +364,7 @@ async def create_program(
364
364
runtime : str ,
365
365
metadata : Optional [dict [str , Any ]] = None ,
366
366
address : Optional [str ] = None ,
367
+ payment : Optional [Payment ] = None ,
367
368
vcpus : Optional [int ] = None ,
368
369
memory : Optional [int ] = None ,
369
370
timeout_seconds : Optional [float ] = None ,
@@ -387,6 +388,7 @@ async def create_program(
387
388
:param runtime: Runtime to use
388
389
:param metadata: Metadata to attach to the message
389
390
:param address: Address to use (Default: account.get_address())
391
+ :param payment: Payment method used to pay for the program (Default: None)
390
392
:param vcpus: Number of vCPUs to allocate (Default: 1)
391
393
:param memory: Memory in MB for the VM to be allocated (Default: 128)
392
394
:param timeout_seconds: Timeout in seconds (Default: 30.0)
Original file line number Diff line number Diff line change @@ -410,6 +410,7 @@ async def create_program(
410
410
runtime : str ,
411
411
metadata : Optional [dict [str , Any ]] = None ,
412
412
address : Optional [str ] = None ,
413
+ payment : Optional [Payment ] = None ,
413
414
vcpus : Optional [int ] = None ,
414
415
memory : Optional [int ] = None ,
415
416
timeout_seconds : Optional [float ] = None ,
@@ -433,6 +434,7 @@ async def create_program(
433
434
runtime = runtime ,
434
435
metadata = metadata ,
435
436
address = address ,
437
+ payment = payment ,
436
438
vcpus = vcpus ,
437
439
memory = memory ,
438
440
timeout_seconds = timeout_seconds ,
You can’t perform that action at this time.
0 commit comments