7370776af1
* use bloomchain crate in blockchain module. remove obsole chainfilter submodule * update database version to 6.0 * removed redundant line * simple db migration * make migration slightly more functional * bloomchain migration * migration version is just a single unsigned integer * updated migration v6 * parity migration * db migration * removed hardcoded migration dir * replace ptr::copy with clone_from_slice, removed potential endianess problem from trace/db.rs * removed superfluous line * blockchains log blooms config is not exposed any more |
||
---|---|---|
dapps | ||
db | ||
devtools | ||
docker | ||
ethash | ||
ethcore | ||
evmjit | ||
ipc | ||
json | ||
miner | ||
parity | ||
rpc | ||
sync | ||
util | ||
.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