Brian Anderson

Results 207 issues of Brian Anderson

rbpf-tests contains this comment ``` match result { Ok(0) => {} Ok(_) => { // fixme rbpf expects a function that returns a status code, but we // currently emit...

enhancement
help wanted

Initial serialization landed in https://github.com/solana-labs/move/pull/219, but it is kinda sloppy and ad-hoc. The serialization format is something that is hard to change once in production, so we should be intentional...

enhancement

Per https://github.com/solana-labs/move/pull/147, the runtime move_rt_vec_destroy function is supposed to be called when vectors are destroyed, but it usually is not. I expect the stackless bytecode to contain an `Operation::Destroy` for...

bug

Should be possible after upgrading to 2018 re https://github.com/pingcap/rust-prometheus/issues/217#issuecomment-453303909 ``` lazy_static! { static ref TIKV_REQUEST_DURATION_HISTOGRAM_VEC: HistogramVec = register_histogram_vec!( "tikv_request_duration_seconds", "Bucketed histogram of TiKV requests duration", &["type"] ) } ```

Something I would personally like to do. Needed prior to 1.0.

After upgrading to Rust 2018 (https://github.com/pingcap/rust-prometheus/issues/217) we can start thinking about releasing 1.0. There may be some other improvements needed as well, but let's get them started.

Closes #1266 ### What This attempts to make the backtraces printed by the SDK while debugging unit tests more useful by presenting the backtrace from the first error raised during...

This issue I have encountered repeatedly when debugging fuzzing errors, but is a bit hard to explain. In various situations where an error is returned but not expected, the host...

bug

### What problem does your feature solve? Soroban's fuzzing support is all located in the soroban-sdk crate, end-user focused. It could be desirable for internal testing purposes to have that...

### What version are you using? 0.8.0 ### What did you do? I created a contract with a `#[contracttype]` containing `RawVal` and compiled it to wasm. Then I tried to...

bug