Exemple #1
0
TER Change::doApply ()
{
    if (mTxn.getTxnType () == ttAMENDMENT)
        return applyAmendment ();

    if (mTxn.getTxnType () == ttFEE)
        return applyFee ();

    return temUNKNOWN;
}
Exemple #2
0
TER ChangeTransactor::doApply ()
{
    if (mTxn.getTxnType () == ttFEATURE)
        return applyFeature ();

    if (mTxn.getTxnType () == ttFEE)
        return applyFee ();

    return temUNKNOWN;
}