@@ -119,11 +119,11 @@ code chaser_validate::do_process_batch(bool startup) NOEXCEPT
119119 {
120120 header_links invalids{};
121121 const auto start = network::logger::now ();
122- // // if (!query.verify_ecdsa_signatures(stopping_, invalids))
123- // // {
124- // // LOGN("Batch verify ecdsa canceled (" << ecdsa << ").");
125- // // return network::error::operation_canceled;
126- // // }
122+ if (!query.verify_ecdsa_signatures (stopping_, invalids))
123+ {
124+ LOGN (" Batch verify ecdsa canceled (" << ecdsa << " )." );
125+ return network::error::operation_canceled;
126+ }
127127 const auto elapsed = network::logger::now () - start;
128128 fire (events::ecdsa_secs, duration_cast<seconds>(elapsed).count ());
129129
@@ -142,11 +142,11 @@ code chaser_validate::do_process_batch(bool startup) NOEXCEPT
142142 {
143143 header_links invalids{};
144144 const auto start = network::logger::now ();
145- // // if (!query.verify_schnorr_signatures(stopping_, invalids))
146- // // {
147- // // LOGN("Batch verify schnorr canceled (" << schnorr << ").");
148- // // return network::error::operation_canceled;
149- // // }
145+ if (!query.verify_schnorr_signatures (stopping_, invalids))
146+ {
147+ LOGN (" Batch verify schnorr canceled (" << schnorr << " )." );
148+ return network::error::operation_canceled;
149+ }
150150 const auto elapsed = network::logger::now () - start;
151151 fire (events::schnorr_secs, duration_cast<seconds>(elapsed).count ());
152152
0 commit comments