tomochain
tomochain copied to clipboard
The Efficient Blockchain Powered By Proof Of Stake Voting Consensus
Currently, when a transaction is promoted, a `TxPreEvent` will be pushed to subscribers immediately. While when the number of new transactions received is large, there are too many `TxPreEvent` will...
``` Sep 25 03:01:39 rockx-mainnet-access-tomochain-01 sh[535581]: You've encountered a sought after, hard to reproduce bug. Please report this to the developers
In our schema, for each transaction, we will maintain an index. The index is basically a mapping like `txHash->(blockHash, blockIndex,index)` which indicators the canonical block number this transaction is included....
Reference: - https://github.com/ethereum/go-ethereum/pull/25977 Checklist: - [X] Encapsulate all the `Message` related structures & abstractions within a single package (core). Previously it was leaking into `core/types/Transaction.go`, most of other packages have...
- [X] Remove mobile package because we don't have the need to operate a Viction node on mobile devices - [X] Remove the Java (for Android) and Objective C (for...
- [X] Remove Ethereum chain configs and genesises, including ETH mainnet, Ropsten and Rinkeby - [X] Define the correct Viction testnet genesis block/hash and use these in code and unit...
Remove swarm from Viction codebase. Swarm codebase of `go-ethereum` is separated and maintained in another github repo https://github.com/ethersphere/bee Supersede https://github.com/BuildOnViction/tomochain/pull/397 Reference: - https://github.com/ethereum/go-ethereum/pull/19661
This PR fix old unit tests and skip the some particular state tests which are only compatible with the original go-ethereum codebase.