Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always create the FeeSettings object in genesis ledger #4319

Merged
merged 25 commits into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1365039
Convert fee voting and protocol messages to use XRPAmounts
ximinez Apr 27, 2022
7ff7706
Improve handling of 0 drop reference fee with TxQ
ximinez Jul 6, 2022
8d15137
[FOLD] Review feedback from Nik:
ximinez Aug 31, 2022
ebe3a1c
[FOLD, maybe] Rename the new SFields from *XRP to *Drops
ximinez Sep 7, 2022
fdff84d
[FOLD] Reserve SField IDs for Hooks, renumber fee fields
ximinez Jan 4, 2023
a92f947
Always create the FeeSettings object in genesis ledger:
ximinez Sep 9, 2022
41df657
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Jan 5, 2023
cfd30fa
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Jan 6, 2023
c72cf84
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Jan 12, 2023
4e93493
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 3, 2023
1b5532b
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 6, 2023
db735c4
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 8, 2023
752e072
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 9, 2023
5144073
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 15, 2023
d536b7f
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 17, 2023
4bbdc64
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 23, 2023
894303d
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 23, 2023
e9b8620
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Feb 28, 2023
f7a5844
Drop the hidden fee config settings in favor of [voting]
ximinez Feb 24, 2023
b910997
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Mar 3, 2023
137d124
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Mar 14, 2023
492e3d2
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Mar 14, 2023
c913a56
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Mar 15, 2023
6a3479a
Merge remote-tracking branch 'upstream/develop' into ledgerinit
ximinez Mar 22, 2023
f2742cf
[FOLD] Review feedback from @gregtatcam:
ximinez Mar 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cfg/rippled-example.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1441,7 +1441,7 @@
# default. Don't change this without understanding the consequences.
#
# Example:
# account_reserve = 20000000 # 20 XRP
# account_reserve = 10000000 # 10 XRP
#
# owner_reserve = <drops>
#
Expand All @@ -1453,7 +1453,7 @@
# default. Don't change this without understanding the consequences.
#
# Example:
# owner_reserve = 5000000 # 5 XRP
# owner_reserve = 2000000 # 2 XRP
#
#-------------------------------------------------------------------------------
#
Expand Down
4 changes: 2 additions & 2 deletions cfg/rippled-reporting.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@
# default. Don't change this without understanding the consequences.
#
# Example:
# account_reserve = 20000000 # 20 XRP
# account_reserve = 10000000 # 10 XRP
#
# owner_reserve = <drops>
#
Expand All @@ -1413,7 +1413,7 @@
# default. Don't change this without understanding the consequences.
#
# Example:
# owner_reserve = 5000000 # 5 XRP
# owner_reserve = 2000000 # 2 XRP
#
#-------------------------------------------------------------------------------
#
Expand Down
68 changes: 53 additions & 15 deletions src/ripple/app/ledger/Ledger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,34 @@ Ledger::Ledger(
rawInsert(sle);
}

{
auto sle = std::make_shared<SLE>(keylet::fees());
// Whether featureXRPFees is supported will depend on startup options.
if (std::find(amendments.begin(), amendments.end(), featureXRPFees) !=
amendments.end())
{
sle->at(sfBaseFeeDrops) = config.FEES.reference_fee;
sle->at(sfReserveBaseDrops) = config.FEES.account_reserve;
sle->at(sfReserveIncrementDrops) = config.FEES.owner_reserve;
}
else
{
if (auto const f =
config.FEES.reference_fee.dropsAs<std::uint64_t>())
sle->at(sfBaseFee) = *f;
if (auto const f =
config.FEES.account_reserve.dropsAs<std::uint32_t>())
sle->at(sfReserveBase) = *f;
if (auto const f =
config.FEES.owner_reserve.dropsAs<std::uint32_t>())
sle->at(sfReserveIncrement) = *f;
sle->at(sfReferenceFeeUnits) = Config::FEE_UNITS_DEPRECATED;
}
rawInsert(sle);
}

stateMap_->flushDirty(hotACCOUNT_NODE);
setImmutable(config);
setImmutable();
}

Ledger::Ledger(
Expand Down Expand Up @@ -259,7 +285,8 @@ Ledger::Ledger(
txMap_->setImmutable();
stateMap_->setImmutable();

if (!setup(config))
defaultFees(config);
if (!setup())
loaded = false;

if (!loaded)
Expand Down Expand Up @@ -329,11 +356,12 @@ Ledger::Ledger(
info_.seq = ledgerSeq;
info_.closeTime = closeTime;
info_.closeTimeResolution = ledgerDefaultTimeResolution;
setup(config);
defaultFees(config);
setup();
}

void
Ledger::setImmutable(Config const& config, bool rehash)
Ledger::setImmutable(bool rehash)
{
// Force update, since this is the only
// place the hash transitions to valid
Expand All @@ -349,23 +377,22 @@ Ledger::setImmutable(Config const& config, bool rehash)
mImmutable = true;
txMap_->setImmutable();
stateMap_->setImmutable();
setup(config);
setup();
}

void
Ledger::setAccepted(
NetClock::time_point closeTime,
NetClock::duration closeResolution,
bool correctCloseTime,
Config const& config)
bool correctCloseTime)
{
// Used when we witnessed the consensus.
assert(!open());

info_.closeTime = closeTime;
info_.closeTimeResolution = closeResolution;
info_.closeFlags = correctCloseTime ? 0 : sLCF_NoConsensusTime;
setImmutable(config);
setImmutable();
}

bool
Expand Down Expand Up @@ -587,13 +614,13 @@ Ledger::rawTxInsertWithHash(
}

bool
Ledger::setup(Config const& config)
Ledger::setup()
{
bool ret = true;

try
{
rules_ = makeRulesGivenLedger(*this, config.features);
rules_ = makeRulesGivenLedger(*this, rules_);
}
catch (SHAMapMissingNode const&)
{
Expand All @@ -604,10 +631,6 @@ Ledger::setup(Config const& config)
Rethrow();
}

fees_.base = config.FEE_DEFAULT;
fees_.reserve = config.FEE_ACCOUNT_RESERVE;
fees_.increment = config.FEE_OWNER_RESERVE;

try
{
if (auto const sle = read(keylet::fees()))
Expand Down Expand Up @@ -667,6 +690,18 @@ Ledger::setup(Config const& config)
return ret;
}

void
Ledger::defaultFees(Config const& config)
{
assert(fees_.base == 0 && fees_.reserve == 0 && fees_.increment == 0);
if (fees_.base == 0)
fees_.base = config.FEES.reference_fee;
if (fees_.reserve == 0)
fees_.reserve = config.FEES.account_reserve;
if (fees_.increment == 0)
fees_.increment = config.FEES.owner_reserve;
}

std::shared_ptr<SLE>
Ledger::peek(Keylet const& k) const
{
Expand Down Expand Up @@ -1071,7 +1106,10 @@ finishLoadByIndexOrHash(
if (!ledger)
return;

ledger->setImmutable(config);
assert(
ledger->info().seq < XRP_LEDGER_EARLIEST_FEES ||
ledger->read(keylet::fees()));
ledger->setImmutable();

JLOG(j.trace()) << "Loaded ledger: " << to_string(ledger->info().hash);

Expand Down
10 changes: 6 additions & 4 deletions src/ripple/app/ledger/Ledger.h
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,10 @@ class Ledger final : public std::enable_shared_from_this<Ledger>,
setAccepted(
NetClock::time_point closeTime,
NetClock::duration closeResolution,
bool correctCloseTime,
Config const& config);
bool correctCloseTime);

void
setImmutable(Config const& config, bool rehash = true);
setImmutable(bool rehash = true);

bool
isImmutable() const
Expand Down Expand Up @@ -395,7 +394,10 @@ class Ledger final : public std::enable_shared_from_this<Ledger>,
class txs_iter_impl;

bool
setup(Config const& config);
setup();

void
defaultFees(Config const& config);

bool mImmutable;

Expand Down
6 changes: 4 additions & 2 deletions src/ripple/app/ledger/impl/BuildLedger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ buildLedgerImpl(
built->unshare();

// Accept ledger
built->setAccepted(
closeTime, closeResolution, closeTimeCorrect, app.config());
assert(
built->info().seq < XRP_LEDGER_EARLIEST_FEES ||
built->read(keylet::fees()));
built->setAccepted(closeTime, closeResolution, closeTimeCorrect);

return built;
}
Expand Down
15 changes: 12 additions & 3 deletions src/ripple/app/ledger/impl/InboundLedger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ InboundLedger::init(ScopedLockType& collectionLock)

JLOG(journal_.debug()) << "Acquiring ledger we already have in "
<< " local store. " << hash_;
mLedger->setImmutable(app_.config());
assert(
mLedger->info().seq < XRP_LEDGER_EARLIEST_FEES ||
mLedger->read(keylet::fees()));
mLedger->setImmutable();

if (mReason == Reason::HISTORY || mReason == Reason::SHARD)
return;
Expand Down Expand Up @@ -416,7 +419,10 @@ InboundLedger::tryDB(NodeStore::Database& srcDB)
{
JLOG(journal_.debug()) << "Had everything locally";
complete_ = true;
mLedger->setImmutable(app_.config());
assert(
mLedger->info().seq < XRP_LEDGER_EARLIEST_FEES ||
mLedger->read(keylet::fees()));
mLedger->setImmutable();
}
}

Expand Down Expand Up @@ -513,7 +519,10 @@ InboundLedger::done()

if (complete_ && !failed_ && mLedger)
{
mLedger->setImmutable(app_.config());
assert(
mLedger->info().seq < XRP_LEDGER_EARLIEST_FEES ||
mLedger->read(keylet::fees()));
mLedger->setImmutable();
switch (mReason)
{
case Reason::SHARD:
Expand Down
17 changes: 13 additions & 4 deletions src/ripple/app/main/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1699,7 +1699,7 @@ ApplicationImp::fdRequired() const
void
ApplicationImp::startGenesisLedger()
{
std::vector<uint256> initialAmendments =
std::vector<uint256> const initialAmendments =
(config_->START_UP == Config::FRESH) ? m_amendmentTable->getDesired()
: std::vector<uint256>{};

Expand All @@ -1710,7 +1710,10 @@ ApplicationImp::startGenesisLedger()
auto const next =
std::make_shared<Ledger>(*genesis, timeKeeper().closeTime());
next->updateSkipList();
next->setImmutable(*config_);
assert(
next->info().seq < XRP_LEDGER_EARLIEST_FEES ||
next->read(keylet::fees()));
next->setImmutable();
openLedger_.emplace(next, cachedSLEs_, logs_->journal("OpenLedger"));
m_ledgerMaster->storeLedger(next);
m_ledgerMaster->switchLCL(next);
Expand All @@ -1728,7 +1731,10 @@ ApplicationImp::getLastFullLedger()
if (!ledger)
return ledger;

ledger->setImmutable(*config_);
assert(
ledger->info().seq < XRP_LEDGER_EARLIEST_FEES ||
ledger->read(keylet::fees()));
ledger->setImmutable();

if (getLedgerMaster().haveLedger(seq))
ledger->setValidated();
Expand Down Expand Up @@ -1879,8 +1885,11 @@ ApplicationImp::loadLedgerFromFile(std::string const& name)

loadLedger->stateMap().flushDirty(hotACCOUNT_NODE);

assert(
loadLedger->info().seq < XRP_LEDGER_EARLIEST_FEES ||
loadLedger->read(keylet::fees()));
loadLedger->setAccepted(
closeTime, closeTimeResolution, !closeTimeEstimated, *config_);
closeTime, closeTimeResolution, !closeTimeEstimated);

return loadLedger;
}
Expand Down
24 changes: 2 additions & 22 deletions src/ripple/app/misc/FeeVote.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,6 @@ namespace ripple {
class FeeVote
{
public:
/** Fee schedule to vote for.
During voting ledgers, the FeeVote logic will try to move towards
these values when injecting fee-setting transactions.
A default-constructed Setup contains recommended values.
*/
struct Setup
{
/** The cost of a reference transaction in drops. */
XRPAmount reference_fee{10};

/** The account reserve requirement in drops. */
XRPAmount account_reserve{10 * DROPS_PER_XRP};

/** The per-owned item reserve requirement in drops. */
XRPAmount owner_reserve{2 * DROPS_PER_XRP};
};

virtual ~FeeVote() = default;

/** Add local fee preference to validation.
Expand All @@ -74,16 +57,13 @@ class FeeVote
std::shared_ptr<SHAMap> const& initialPosition) = 0;
};

/** Build FeeVote::Setup from a config section. */
FeeVote::Setup
setup_FeeVote(Section const& section);

struct FeeSetup;
/** Create an instance of the FeeVote logic.
@param setup The fee schedule to vote for.
@param journal Where to log.
*/
std::unique_ptr<FeeVote>
make_FeeVote(FeeVote::Setup const& setup, beast::Journal journal);
make_FeeVote(FeeSetup const& setup, beast::Journal journal);

} // namespace ripple

Expand Down
28 changes: 4 additions & 24 deletions src/ripple/app/misc/FeeVoteImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ VotableValue::getVotes() const -> std::pair<value_type, bool>
class FeeVoteImpl : public FeeVote
{
private:
Setup target_;
FeeSetup target_;
beast::Journal const journal_;

public:
FeeVoteImpl(Setup const& setup, beast::Journal journal);
FeeVoteImpl(FeeSetup const& setup, beast::Journal journal);

void
doValidation(Fees const& lastFees, Rules const& rules, STValidation& val)
Expand All @@ -112,7 +112,7 @@ class FeeVoteImpl : public FeeVote

//--------------------------------------------------------------------------

FeeVoteImpl::FeeVoteImpl(Setup const& setup, beast::Journal journal)
FeeVoteImpl::FeeVoteImpl(FeeSetup const& setup, beast::Journal journal)
: target_(setup), journal_(journal)
{
}
Expand Down Expand Up @@ -335,28 +335,8 @@ FeeVoteImpl::doVoting(

//------------------------------------------------------------------------------

FeeVote::Setup
setup_FeeVote(Section const& section)
{
FeeVote::Setup setup;
{
std::uint64_t temp;
if (set(temp, "reference_fee", section) &&
temp <= std::numeric_limits<XRPAmount::value_type>::max())
setup.reference_fee = temp;
}
{
std::uint32_t temp;
if (set(temp, "account_reserve", section))
setup.account_reserve = temp;
if (set(temp, "owner_reserve", section))
setup.owner_reserve = temp;
}
return setup;
}

std::unique_ptr<FeeVote>
make_FeeVote(FeeVote::Setup const& setup, beast::Journal journal)
make_FeeVote(FeeSetup const& setup, beast::Journal journal)
{
return std::make_unique<FeeVoteImpl>(setup, journal);
}
Expand Down
Loading