mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 12:15:51 +00:00
Prevent 'amount' from being misinterpreted (#924)
The 'amount' field should almost never be used. With partial payments, the field can show an amount that is significantly less than the amount that the transaction actually delivered. This change sets amount to 0 XRP when it may be misleading. This change omits the `amount` when parsing payment transactions. See `HISTORY.md` for recommended alternatives.
This commit is contained in:
@@ -1447,6 +1447,17 @@ describe('RippleAPI', function () {
|
||||
'getTransaction'));
|
||||
});
|
||||
|
||||
it('getTransaction - payment - include raw transaction', function () {
|
||||
const options = {
|
||||
includeRawTransaction: true
|
||||
}
|
||||
return this.api.getTransaction(
|
||||
hashes.VALID_TRANSACTION_HASH, options
|
||||
).then(
|
||||
_.partial(checkResult, responses.getTransaction.paymentIncludeRawTransaction,
|
||||
'getTransaction'));
|
||||
});
|
||||
|
||||
it('getTransaction - settings', function () {
|
||||
const hash =
|
||||
'4FB3ADF22F3C605E23FAEFAA185F3BD763C4692CAC490D9819D117CD33BFAA1B';
|
||||
@@ -1455,6 +1466,19 @@ describe('RippleAPI', function () {
|
||||
'getTransaction'));
|
||||
});
|
||||
|
||||
it('getTransaction - settings - include raw transaction', function () {
|
||||
const hash =
|
||||
'4FB3ADF22F3C605E23FAEFAA185F3BD763C4692CAC490D9819D117CD33BFAA1B';
|
||||
const options = {
|
||||
includeRawTransaction: true
|
||||
}
|
||||
const expected = responses.getTransaction.settings
|
||||
expected.rawTransaction = "{\"Account\":\"rLVKsA4F9iJBbA6rX2x4wCmkj6drgtqpQe\",\"Fee\":\"10\",\"Flags\":2147483648,\"Sequence\":1,\"SetFlag\":2,\"SigningPubKey\":\"03EA3ADCA632F125EC2CC4F7F6A82DE0DCE2B65290CAC1F22242C5163F0DA9652D\",\"TransactionType\":\"AccountSet\",\"TxnSignature\":\"3045022100DE8B666B1A31EA65011B0F32130AB91A5747E32FA49B3054CEE8E8362DBAB98A022040CF0CF254677A8E5CD04C59CA2ED7F6F15F7E184641BAE169C561650967B226\",\"date\":460832270,\"hash\":\"4FB3ADF22F3C605E23FAEFAA185F3BD763C4692CAC490D9819D117CD33BFAA1B\",\"inLedger\":8206418,\"ledger_index\":8206418,\"meta\":{\"AffectedNodes\":[{\"ModifiedNode\":{\"FinalFields\":{\"Account\":\"rLVKsA4F9iJBbA6rX2x4wCmkj6drgtqpQe\",\"Balance\":\"29999990\",\"Flags\":786432,\"OwnerCount\":0,\"Sequence\":2},\"LedgerEntryType\":\"AccountRoot\",\"LedgerIndex\":\"3F5072C4875F32ED770DAF3610A716600ED7C7BB0348FADC7A98E011BB2CD36F\",\"PreviousFields\":{\"Balance\":\"30000000\",\"Flags\":4194304,\"Sequence\":1},\"PreviousTxnID\":\"3FB0350A3742BBCC0D8AA3C5247D1AEC01177D0A24D9C34762BAA2FEA8AD88B3\",\"PreviousTxnLgrSeq\":8206397}}],\"TransactionIndex\":5,\"TransactionResult\":\"tesSUCCESS\"},\"validated\":true}"
|
||||
return this.api.getTransaction(hash, options).then(
|
||||
_.partial(checkResult, expected,
|
||||
'getTransaction'));
|
||||
});
|
||||
|
||||
it('getTransaction - order', function () {
|
||||
const hash =
|
||||
'10A6FB4A66EE80BED46AAE4815D7DC43B97E944984CCD5B93BCF3F8538CABC51';
|
||||
@@ -1782,6 +1806,18 @@ describe('RippleAPI', function () {
|
||||
'getTransactions'));
|
||||
});
|
||||
|
||||
it('getTransactions - include raw transactions', function () {
|
||||
const options = {
|
||||
types: ['payment', 'order'],
|
||||
initiated: true,
|
||||
limit: 2,
|
||||
includeRawTransactions: true
|
||||
};
|
||||
return this.api.getTransactions(address, options).then(
|
||||
_.partial(checkResult, responses.getTransactions.includeRawTransactions,
|
||||
'getTransactions'));
|
||||
});
|
||||
|
||||
it('getTransactions - earliest first', function () {
|
||||
const options = {
|
||||
types: ['payment', 'order'], initiated: true, limit: 2,
|
||||
@@ -2413,8 +2449,6 @@ describe('RippleAPI', function () {
|
||||
_.partial(checkResult, responses.getLedger.header, 'getLedger'));
|
||||
});
|
||||
|
||||
// New in > 0.21.0
|
||||
// future ledger versions are allowed, and passed to rippled as-is.
|
||||
it('getLedger - future ledger version', function () {
|
||||
return this.api.getLedger({ ledgerVersion: 14661789 }).then(response => {
|
||||
assert(response)
|
||||
@@ -2447,7 +2481,7 @@ describe('RippleAPI', function () {
|
||||
const request = {
|
||||
includeTransactions: true,
|
||||
includeAllData: true,
|
||||
ledgerVersion: 100000
|
||||
ledgerVersion: 22420574
|
||||
};
|
||||
return this.api.getLedger(request).then(
|
||||
_.partial(checkResult, responses.getLedger.withPartial, 'getLedger'));
|
||||
|
||||
Reference in New Issue
Block a user