kin-android / kin.sdk / KinAccount / sendWhitelistTransactionSync
@NonNull abstract fun sendWhitelistTransactionSync(whitelist: String!): TransactionId
send a whitelist transaction. whitelist a transaction means that the user will not pay any fee(if your App is in the Kin whitelist)
Note: This method accesses the network, and should not be called on the android main thread.
whitelist - String!: is the whitelist data (got from the server) which will be used to send the transaction.
AccountNotFoundException - if the sender or destination account was not created.
InsufficientKinException - if account balance has not enough kin.
TransactionFailedException - if transaction failed, contains blockchain failure details.
OperationFailedException - other error occurred.
Return TransactionId: TransactionId the transaction identifier.