mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
bcc8f68f52
* Fix issue where we have no metadata for a block (#938)
when restarting node before initial sync completed
* Avoid double-locking on add eviction. Fixes #936
* Fix 33c5a983
* Add support for DNS Seed (#940)
* Add support for DNS Seed
* Add port
* Add seed.grin-tech.org
* Remove duplicate IPs
* minimal stratum server
* Modifications for review comments. Move stratum test into its own file, move get_block() into its own rust module, use pool and chain only rather than the entire Miner object
* rustfmt
* cleanup
* cleanup
* Introduce extending_readonly to simplify a forcing and cancelling rollbacks (#945)
readonly views of the txhashset
* Add DNS Seed and make DNSSeed default (#942)
* Add dns seed seeding type
* Add grin-seed.owncrypto.de and make DNSSeed default
* Add email address for each DNS Seed
* [WIP] Core PMMR and API updates to support wallet restore (#950)
* update pmmr to get batch of elements by insertion position
* update pmmr to get batch of elements by insertion position
* add api + chain calls to get traversed outputs back out
* add api + chain calls to get traversed outputs back out
* first pass getting wallet restore to work again with updated utxo-walking api
* Update simulation.md
* Fix Bus Error (core dumped) when validating fast sync txhashset (#956)
This PR fixes #953 by introducing a lock for txhashet_write. It's not enough
to synchronize access to in memory data, files also needs to be protected, so
a general txhashset lock was introduced.
* refactor grin crate into separate modules (#955)
* Add total kernel offset to block api (#954)
* minimal stratum server
* Modifications for review comments. Move stratum test into its own file, move get_block() into its own rust module, use pool and chain only rather than the entire Miner object
* rustfmt
* cleanup
* cleanup
* Merge with grin_grin -> servers code reorg
* Merge with grin_grin -> servers code reorg
* add stratum server stats
34 lines
831 B
TOML
34 lines
831 B
TOML
[package]
|
|
name = "grin_servers"
|
|
version = "0.2.0"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
workspace = ".."
|
|
publish = false
|
|
|
|
[dependencies]
|
|
hyper = "0.10"
|
|
itertools = "0.6"
|
|
rand = "0.3"
|
|
router = "0.5"
|
|
slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_trace"] }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
time = "0.1"
|
|
bufstream = "~0.1"
|
|
jsonrpc-core = "~4.0"
|
|
|
|
grin_api = { path = "../api" }
|
|
grin_chain = { path = "../chain" }
|
|
grin_core = { path = "../core" }
|
|
grin_keychain = { path = "../keychain" }
|
|
grin_p2p = { path = "../p2p" }
|
|
grin_pool = { path = "../pool" }
|
|
grin_pow = { path = "../pow" }
|
|
grin_store = { path = "../store" }
|
|
grin_util = { path = "../util" }
|
|
grin_wallet = { path = "../wallet" }
|
|
|
|
[dev-dependencies]
|
|
blake2-rfc = "0.2"
|
|
grin_config = { path = "../config" }
|