* Firt commit. * First non-functional but correct implementation of BasicAuthority. Still needs: - Sealing infrastructure. * Punch a hole to give miner access to key store. * Fix test built. * Basic version of synchronous mining. This will seal a block whenever a new transaction comes through. To be made better we need a timer which will wait for one second after the last block before sealing a new one - better still would be to cooperatively interleave blocks with other sealing nodes. * Add tests. * Fix minor issues from repotting. * Address grumbles. |
||
|---|---|---|
| devtools | ||
| docker | ||
| ethash | ||
| ethcore | ||
| evmjit | ||
| ipc | ||
| json | ||
| miner | ||
| parity | ||
| rpc | ||
| sync | ||
| util | ||
| webapp | ||
| .editorconfig | ||
| .gitignore | ||
| .gitmodules | ||
| .travis.yml | ||
| add_license.sh | ||
| build.rs | ||
| Cargo.lock | ||
| Cargo.toml | ||
| cov.sh | ||
| doc.sh | ||
| fmt.sh | ||
| hook.sh | ||
| install-deps.sh | ||
| install-parity.sh | ||
| LICENSE | ||
| license_header | ||
| README.md | ||
| rustfmt.toml | ||
| test.sh | ||
ethcore
Building from source
First (if you don't already have it) get multirust:
- Linux:
curl -sf https://raw.githubusercontent.com/brson/multirust/master/quick-install.sh | sh
- OSX with Homebrew:
brew update && brew install multirust
multirust default stable
Then, download and build Parity:
# download Parity code
git clone https://github.com/ethcore/parity
cd parity
# build in release mode
cargo build --release