Fibonacci747
Fibonacci747
The previous pagination logic placed the `resp.NextPage == 0` check in an unreachable `else if` branch competing with TagPrefix conditions. As a result, when TagPrefix != "" and no matching...
use std::hash::Hash; Import isn't needed for #[derive(Hash)] and it's not used anywhere
Add missing ON CONFLICT DO NOTHING to INSERT into vid_share2 in migrate_vid_shares. This aligns the function with other batch migrations (anchor_leaf, da_proposal, quorum_proposals, quorum_certificate), ensuring idempotency on batch boundaries and...
https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI - broken https://docs.soliditylang.org/en/latest/abi-spec.html - correct
[context] upgradeable.adoc showed a pre-change diff line with public on a constructor. [fix] Dropped public to align with Solidity ≥0.7 syntax and repo-wide ^0.8 usage.
# Description Time‑based FutureOperations were never actually used: they were created but never stored in the shared queue or removed from it, so they never executed. queueOperations and runQueuedTimeOperations took...
The docs for env::write_slice and env::commit_slice incorrectly stated that these functions "read" a slice of POD data. In reality they write/commit the slice to stdout or the journal. This change...
Replace per-element temporary Vec with an iterator passed to ExtElem::from_subelems and switch the outer container to a fixed-size array. This removes heap traffic in a hot path without changing behavior....
The guest env docs referenced [risc0-r0vm] in both write() and write_slice() without defining the link label, which results in a broken rendered link. This change adds the link label pointing...
Replace misleading “disjoint” wording with “contiguous” for PoVW nonce ranges in Work::join and MaybePruned::join. Complete the doc comment for WorkClaimError to describe PoVW work/claim error context. No functional changes.