Rename getSequence to getSeqValue

This commit is contained in:
Bronek Kozicki
2025-02-03 13:07:00 +00:00
parent 8baadd5ec3
commit 9decc053e3
3 changed files with 3 additions and 3 deletions

View File

@@ -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;

View File

@@ -198,7 +198,7 @@ STTx::getSeqProxy() const
}
std::uint32_t
STTx::getSequence() const
STTx::getSeqValue() const
{
return getSeqProxy().value();
}

View File

@@ -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));