Skip to content

Commit

Permalink
[fold] fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dangell7 committed Jan 30, 2025
1 parent 10a178c commit 503c594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrpld/overlay/detail/PeerImp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1265,7 +1265,7 @@ PeerImp::handleTransaction(
{
JLOG(p_journal_.warn()) << "Ignoring Network relayed Tx containing "
"tfInnerBatchTxn (handleTransaction).";
fee_ = Resource::feeHighBurdenPeer;
fee_.update(Resource::feeModerateBurdenPeer, "inner batch txn");
return;

Check warning on line 1269 in src/xrpld/overlay/detail/PeerImp.cpp

View check run for this annotation

Codecov / codecov/patch

src/xrpld/overlay/detail/PeerImp.cpp#L1269

Added line #L1269 was not covered by tests
}

Expand Down Expand Up @@ -2803,7 +2803,7 @@ PeerImp::checkTransaction(
{
JLOG(p_journal_.warn()) << "Ignoring Network relayed Tx containing "
"tfInnerBatchTxn (checkSignature).";
charge(Resource::feeHighBurdenPeer);
charge(Resource::feeModerateBurdenPeer, "inner batch txn");
return;

Check warning on line 2807 in src/xrpld/overlay/detail/PeerImp.cpp

View check run for this annotation

Codecov / codecov/patch

src/xrpld/overlay/detail/PeerImp.cpp#L2807

Added line #L2807 was not covered by tests
}

Expand Down

0 comments on commit 503c594

Please sign in to comment.