Fibonacci747

Results 18 issues of Fibonacci747

[concat] Use from_evaluations_vec to move the built Vec instead of cloning via from_evaluations_slice, eliminating one full-buffer copy. [fix_variables] After folding, truncate to 1

The rstest matrix for check_append_ret_values_to_output_segment was running serialized_output/array_append.cairo twice, which did not add any new coverage and only duplicated the same scenario. This change drops the redundant case while keeping...

The previous readiness check used WaitForStateChange(ctx, connectivity.Ready), which waits for a transition out of Ready rather than into Ready, providing no guarantee that the connection became ready and often returning...

external

Made this change to eliminate unnecessary allocations in the slashing protection import paths because this reduces memory usage and avoids an extra copy when passing request JSON into the DB...

TestPutGet already relies on data inserted by BaseCase, where key1 has value1.1 as the first dupsort value. The extra Put with an empty key neither affects the semantics of GetOne("Table",...

Correct the preset constant name from BUILDER_PEDING_WITHDRAWALS_LIMIT to BUILDER_PENDING_WITHDRAWALS_LIMIT

c-update
t-core
a-review
s-draft

The text said “double every log_{1.125}(10) = 5.885 blocks”, which mixed doubling (×2) with a log argument for ×10. The 5.885 value actually corresponds to log_{1.125}(2). Updated the statement to...

c-update
t-core
a-review
s-review

Replaced cloning of k_bits and per-limb to_vec slicing with a single forward iterator that streams bits into limbs. This removes quadratic copying and extra allocations during k_limbs construction in reduce(),...