Rename "paymentSequence" to "suspensionSequence" in suspended payments

This commit is contained in:
Chris Clark
2015-11-16 12:10:17 -08:00
parent 9af20f9176
commit c1bf1fd211
8 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ function parseSuspendedPaymentCancellation(tx: Object): Object {
return utils.removeUndefined({
memos: utils.parseMemos(tx),
owner: tx.Owner,
paymentSequence: tx.OfferSequence
suspensionSequence: tx.OfferSequence
});
}

View File

@@ -9,7 +9,7 @@ function parseSuspendedPaymentExecution(tx: Object): Object {
return utils.removeUndefined({
memos: utils.parseMemos(tx),
owner: tx.Owner,
paymentSequence: tx.OfferSequence,
suspensionSequence: tx.OfferSequence,
method: tx.Method,
digest: tx.Digest,
proof: tx.Proof ? utils.hexToString(tx.Proof) : undefined