style: Update pre-commit hooks (#2968)

Co-authored-by: mathbunnyru <12270691+mathbunnyru@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-03-03 15:58:30 +00:00
committed by GitHub
parent b9ee5187b6
commit a4d6caf8a7
13 changed files with 52 additions and 39 deletions

View File

@@ -257,12 +257,14 @@ SubscriptionSource::handleMessage(std::string const& message)
if (object.contains(JS(transaction)) and !object.contains(JS(meta))) {
LOG(log_.debug()) << "Forwarding proposed transaction: " << object;
subscriptions_->forwardProposedTransaction(object);
} else if (object.contains(JS(type)) &&
object.at(JS(type)) == kJS_VALIDATION_RECEIVED) {
} else if (
object.contains(JS(type)) && object.at(JS(type)) == kJS_VALIDATION_RECEIVED
) {
LOG(log_.debug()) << "Forwarding validation: " << object;
subscriptions_->forwardValidation(object);
} else if (object.contains(JS(type)) &&
object.at(JS(type)) == kJS_MANIFEST_RECEIVED) {
} else if (
object.contains(JS(type)) && object.at(JS(type)) == kJS_MANIFEST_RECEIVED
) {
LOG(log_.debug()) << "Forwarding manifest: " << object;
subscriptions_->forwardManifest(object);
}