Nicholas Dudfield 71932be386 PreviousTxnID -> AccountTxnID
PreviousTxnID (deprecated) mandates the PreviousTxnID field,
 present in the transaction to match that in the AccountRoot of
the initiating Account. Note that this field is update on EVERY
transaction affecting the account (eg. 1 drop inbound payments)

See: https://wiki.ripple.com/Transaction_Metadata#Threading

Relevant source from Transactor.cpp:211

    // Deprecated: Do not use
    if (mTxn.isFieldPresent (sfPreviousTxnID) &&
            (mTxnAccount->getFieldH256 (sfPreviousTxnID) !=
    mTxn.getFieldH256 (sfPreviousTxnID)))
        return tefWRONG_PRIOR;

    if (mTxn.isFieldPresent (sfAccountTxnID) &&
            (mTxnAccount->getFieldH256 (sfAccountTxnID) !=
            mTxn.getFieldH256 (sfAccountTxnID)))
        return tefWRONG_PRIOR;
2014-09-26 17:58:37 +07:00
2014-09-02 12:00:44 -07:00
2014-09-19 15:57:11 -07:00
2014-08-05 07:27:48 -07:00
2014-04-23 17:46:49 -07:00
2014-08-07 18:42:17 -07:00
2014-09-26 17:58:37 +07:00

ripple-dev-portal

This Ripple Developer Portal is focused solely on documentation for the ripple-rest API. The developer portal is a static site leveraging a fork of flatdoc.

The documentation is stored in the "API.md" file in the root of the ripple-dev-portal repository. Versioning for the documentation will match the tagged release version for ripple-rest.

The ripple-dev-portal is currently hosted at https://dev.ripple.com

Description
Languages
JavaScript 27.4%
Python 21.5%
TypeScript 19.6%
HTML 13.9%
SCSS 9.1%
Other 8.5%