Skip to content

Commit

Permalink
Update Transactor.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
dangell7 committed Oct 18, 2023
1 parent 1ef59e8 commit d8b2ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ripple/app/tx/impl/Transactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace ripple {
NotTEC
preflight0(PreflightContext const& ctx)
{
if (ctx.tx.isFieldPresent(sfNetworkID))
if (!isPseudoTx(ctx.tx) || ctx.tx.isFieldPresent(sfNetworkID))
{
uint32_t nodeNID = ctx.app.config().NETWORK_ID;
std::optional<uint32_t> txNID = ctx.tx[~sfNetworkID];
Expand Down

0 comments on commit d8b2ba4

Please sign in to comment.