encode static method

void encode(
  1. XdrDataOutputStream stream,
  2. XdrSimplePaymentResult encodedSimplePaymentResult
)

Implementation

static void encode(XdrDataOutputStream stream,
    XdrSimplePaymentResult encodedSimplePaymentResult) {
  XdrMuxedAccount.encode(stream, encodedSimplePaymentResult.destination);
  XdrAsset.encode(stream, encodedSimplePaymentResult.asset);
  XdrInt64.encode(stream, encodedSimplePaymentResult.amount);
}