Skip to content

Instantly share code, notes, and snippets.

@kylemccollom
Created December 17, 2018 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylemccollom/17fcf621e208ecc386bda037df7f7856 to your computer and use it in GitHub Desktop.
Save kylemccollom/17fcf621e208ecc386bda037df7f7856 to your computer and use it in GitHub Desktop.
def transmit(operations: Seq[PaymentOperation]) = {
 operations.foldLeft(Transaction(accn))(_ add _).sign(accnKey, signerKey)
 txn.submit()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment