@@ -97,7 +97,7 @@ preflight1(PreflightContext const& ctx)
97
97
if (!isTesSuccess (ret))
98
98
return ret;
99
99
100
- auto const id = ctx.tx .getAccountID (sfAccount);
100
+ auto const id = ctx.tx .getTx (). getAccountID (sfAccount);
101
101
if (id == beast::zero)
102
102
{
103
103
JLOG (ctx.j .warn ()) << " preflight1: bad account id" ;
@@ -271,7 +271,7 @@ Transactor::checkFee(PreclaimContext const& ctx, XRPAmount baseFee)
271
271
if (feePaid == beast::zero)
272
272
return tesSUCCESS;
273
273
274
- auto const id = ctx.tx .getAccountID (sfAccount);
274
+ auto const id = ctx.tx .getTx (). getAccountID (sfAccount);
275
275
auto const sle = ctx.view .read (keylet::account (id));
276
276
if (!sle)
277
277
return terNO_ACCOUNT;
@@ -406,7 +406,7 @@ Transactor::checkSeqProxy(
406
406
NotTEC
407
407
Transactor::checkPriorTxAndLastLedger (PreclaimContext const & ctx)
408
408
{
409
- auto const id = ctx.tx .getAccountID (sfAccount);
409
+ auto const id = ctx.tx .getTx (). getAccountID (sfAccount);
410
410
411
411
auto const sle = ctx.view .read (keylet::account (id));
412
412
@@ -639,7 +639,7 @@ Transactor::checkSingleSign(PreclaimContext const& ctx)
639
639
NotTEC
640
640
Transactor::checkMultiSign (PreclaimContext const & ctx)
641
641
{
642
- auto const id = ctx.tx .getAccountID (sfAccount);
642
+ auto const id = ctx.tx .getTx (). getAccountID (sfAccount);
643
643
// Get mTxnAccountID's SignerList and Quorum.
644
644
std::shared_ptr<STLedgerEntry const > sleAccountSigners =
645
645
ctx.view .read (keylet::signers (id));
0 commit comments