We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40d922d commit e2533d2Copy full SHA for e2533d2
MobileInappTransactions/create-an-accept-transaction.py
@@ -1,5 +1,6 @@
1
import os, sys
2
import imp
3
+import time
4
5
from authorizenet import apicontractsv1
6
from authorizenet.apicontrollers import *
@@ -15,7 +16,7 @@ def create_an_accept_transaction(amount):
15
16
merchantAuth.transactionKey = constants.transactionKey
17
18
# Set the transaction's refId
- refId = "ref {}" format(time.time())
19
+ refId = "ref {}".format(time.time())
20
21
# Create the payment object for a payment nonce
22
opaqueData = apicontractsv1.opaqueDataType()
0 commit comments