sistemd
sistemd
Would you accept a PR adding a [`loom`](https://docs.rs/loom/latest/loom/) feature to the crate, which swaps out `std::sync` with `loom::sync`? This would allow people who test their concurrent code with loom to...
Addresses https://github.com/filecoin-project/ref-fvm/issues/746. Adds new `create` constructor entrypoint for actors. This allows the calling convention for constructors to change. At the moment: - The calling convention is the same, only a...
Part of https://github.com/filecoin-project/ref-fvm/issues/1566. Implements new syscalls for beginning and ending spans, and exposes them through the SDK. Adds new execution events for spans. Implements a new `TraceClock` abstraction to obtain...
Move the code from `forest_hash_utils` into a local crate. Rename it to `hashutil` to be more consistent with names of other crates in the repo. Fixes https://github.com/filecoin-project/ref-fvm/issues/958.
WASM module level `create` functions were added in https://github.com/filecoin-project/ref-fvm/pull/1821, and this PR adds support for them in the builtin actors. Only the unit tests for each individual test are passing,...
Closes https://github.com/eqlabs/pathfinder/issues/1129.
Closes https://github.com/eqlabs/pathfinder/issues/1996.
Follow-up from https://github.com/eqlabs/pathfinder/pull/2007#discussion_r1600307827. In that PR, events are only broadcasted from blocks accepted on L1. Instead events should also be broadcasted from pending events.
[AWS Blockchain Node Runners](https://aws-samples.github.io/aws-blockchain-node-runners/) are a way to easily deploy blockchain nodes. [Here](https://github.com/aws-samples/aws-blockchain-node-runners/blob/main/docs/adding-new-nodes.md) are the instructions for how a new blueprint can be added for Pathfinder.
Peer connection should be closed and peer marked as not useful if the peer: - [ ] sends garbage data or any data which violates the negotiated protocol, - [...