foundry
foundry copied to clipboard
A programmable open source blockchain engine
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4. Commits 43ac7f2 6.5.4 f4bc72b package: bump deps 441b742 ec: validate that a point before deriving keys e71b2d9 lib: relint using eslint 8421a01 build(deps): bump...
It is not used
It is desirable to propagate tx based on the order sorted by TxSorter
`execute_transactions` won't return an `Err`. Change its signature to reflect it. https://github.com/CodeChain-io/foundry/blob/c56248357b5fdfe931a9465ae9aadff9edac4bd4/coordinator/src/lib.rs#L300
We have no proper rule for transactions that are tested to be valid by TxSorter, but not accepted by the actual owner module. They will just reside in the mempool...
The current implementation of `body_downloader` imports a transaction only once, and the transaction can be rejected while importing to the mempool because of the mempool limit (memory limit or size...
https://github.com/CodeChain-io/codechain/blob/d91b73a0fe81a8a1431e704d9ef73276ef43ef59/util/rlp/src/stream.rs#L397-L409 this tests the behavior. Make the above test pass.
It would be nice if we could browse the DB or visualize a portion of it without starting a node.
Our Tendermint implementation locks on a block if 2/3 of prevotes are collected even though the block is not received yet. Changing the behavior should not affect safety. If more...