mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
eb9cc7ef13
* Transactions coming from the network are now pushed to the pool through the net adapter. * New blocks accepted by the chain are sent to the pool for eviction. * The miner requests transactions from the pool to build its blocks. * The push API adds to the pool, removing the mock. * Implementation of the adapter to the chain required by the pool to get consistent UTXOs. Grossly unoptimized until we have the UTXO MMR ready.
20 lines
448 B
TOML
20 lines
448 B
TOML
[package]
|
|
name = "grin_api"
|
|
version = "0.1.0"
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
grin_core = { path = "../core" }
|
|
grin_chain = { path = "../chain" }
|
|
grin_pool = { path = "../pool" }
|
|
grin_util = { path = "../util" }
|
|
secp256k1zkp = { path = "../secp256k1zkp" }
|
|
|
|
hyper = "~0.10.6"
|
|
iron = "~0.5.1"
|
|
log = "~0.3"
|
|
router = "~0.5.1"
|
|
serde = "~1.0.8"
|
|
serde_derive = "~1.0.8"
|
|
serde_json = "~1.0.2"
|