conduition
conduition
Putting this briefly into Draft state; i found I was getting spurious logs after a07b70d. ``` [2023-12-24T18:21:13.575Z DEBUG electrs::mempool] 82650 mempool txs: 0 added, 0 removed [2023-12-24T18:21:13.583Z DEBUG electrs::mempool] 82650...
OK should be fixed now
Hey @romanz, just wanted to check in and see if I should take the time to rebase this or?
The full backtrace: ``` $ RUST_BACKTRACE=full cargo run . proving execution... thread 'main' panicked at host/src/main.rs:28:10: failed to prove: failed to fill whole buffer Stack backtrace: 0: anyhow::error::::from at /home/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/anyhow-1.0.79/src/error.rs:565:25...
I also tried using [your fork of `k256`](https://github.com/risc0/RustCrypto-elliptic-curves/tree/master/k256): ```diff diff --git a/methods/guest/Cargo.toml b/methods/guest/Cargo.toml index b74f270..71cd0d9 100644 --- a/methods/guest/Cargo.toml +++ b/methods/guest/Cargo.toml @@ -8,4 +8,18 @@ edition = "2021" [dependencies] # If...
I just retried with `[email protected]` and the crash still occurs. OP revised with code and config files for v1.0.1
The crash seems to occur with any secp256k1 point multiplication operation regardless of which implementation i use. I have also tried using the `secp256k1` crate (binds to libsecp256k1) in the...
I believe I found a much simpler reproduction method. Guest program: ```rust #![no_main] #![no_std] use num_bigint::{BigInt, Sign}; use num_integer::Integer; use risc0_zkvm::guest::env; use risc0_zkvm::sha; use sha::Sha256 as _; risc0_zkvm::guest::entry!(main); fn modpow(base:...