mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-22 23:00:55 +00:00
Rename getSequence to getSeqValue
This commit is contained in:
@@ -103,7 +103,7 @@ public:
|
||||
|
||||
/** Returns the first non-zero value of (Sequence, TicketSequence). */
|
||||
std::uint32_t
|
||||
getSequence() const;
|
||||
getSeqValue() const;
|
||||
|
||||
boost::container::flat_set<AccountID>
|
||||
getMentionedAccounts() const;
|
||||
|
||||
@@ -198,7 +198,7 @@ STTx::getSeqProxy() const
|
||||
}
|
||||
|
||||
std::uint32_t
|
||||
STTx::getSequence() const
|
||||
STTx::getSeqValue() const
|
||||
{
|
||||
return getSeqProxy().value();
|
||||
}
|
||||
|
||||
@@ -107,7 +107,7 @@ VaultCreate::doApply()
|
||||
|
||||
auto const& tx = ctx_.tx;
|
||||
auto const& ownerId = account_;
|
||||
auto sequence = tx.getSequence();
|
||||
auto sequence = tx.getSeqValue();
|
||||
|
||||
auto owner = view().peek(keylet::account(ownerId));
|
||||
auto vault = std::make_shared<SLE>(keylet::vault(ownerId, sequence));
|
||||
|
||||
Reference in New Issue
Block a user