PrevUpHomeNext

Consensus::accept

Accept a new last closed ledger.

Synopsis
void
accept(
    TxSet_t const& set);
Description

We believe the network reached Consensus on a set of transactions. This function accepts those new transactions, creating a new last closed ledger. The bulk of the work is dispatched to the deriving class' accept method.

Parameters

Name

Description

set

Our consensus transaction set

Remarks

This is protected so the Derived class can call it from dispatchAccept.


PrevUpHomeNext