Brian Anderson
Brian Anderson
I'm having a hard time evaluating this. The linked patches I think look a little better but not greatly superior. In general, I am inclined to migrate toward `thiserror` and/or...
As an aside, considering how much difficulty the Rust community has "chaining" errors, I often question whether it is an important thing to do, or if the original `Error` design...
I have made progress on this here: https://github.com/brson/binaryen/tree/unicode The wasm-opt in that branch can input and output to unicode paths on windows. I still need to convert all the other...
There are two PRs open related to this issue: - https://github.com/WebAssembly/binaryen/pull/5514 - this is my PR. It adopts filesystem::path, and changes the main function to reencode the main arguments on...
Thanks for the tip @Keith-CY. For this project we do insist on counting the transactions within blocks ourselves. We also prefer to go directly to a network node and not...
After thinking over this for a while, I am not inclined to judge how users use transactions. If they are grouping ops into a transaction I can only assume they...
Fixed in https://github.com/Aimeedeer/realtps/pull/86
I wonder if this task panicked.
Solana and Stellar pack "instructions" / "operations" into atomic "transactions". On solana we count transactions, on stellar we count operations. That is not a reasonable inconsistency.
DAG networks so far seem to have some type of collation service that periodically checkpoint their dag into linear blocks; similar to how near packs its subnet activity into "hyperblocks".