Fix sc-tracing-* -> sc-transaction- (#4263)

* fixing faulty tracing-rename

* missed one
This commit is contained in:
Benjamin Kampmann
2019-12-02 12:19:53 +01:00
committed by GitHub
parent 927e13c13a
commit 810ac845b5
11 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
[package]
name = "sc-tracing-pool"
name = "sc-transaction-pool"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -13,7 +13,7 @@ parking_lot = "0.9.0"
primitives = { package = "sp-core", path = "../../primitives/core" }
sp-api = { path = "../../primitives/sr-api" }
sp-runtime = { path = "../../primitives/sr-primitives" }
txpool = { package = "sc-tracing-graph", path = "./graph" }
txpool = { package = "sc-transaction-graph", path = "./graph" }
txpool-api = { package = "sp-transaction-pool-api", path = "../../primitives/transaction-pool" }
txpool-runtime-api = { package = "sp-transaction-pool-runtime-api", path = "../../primitives/transaction-pool/runtime-api" }
client-api = { package = "sc-client-api", path = "../api" }
@@ -1,5 +1,5 @@
[package]
name = "sc-tracing-graph"
name = "sc-transaction-graph"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -17,7 +17,7 @@
use criterion::{criterion_group, criterion_main, Criterion};
use futures::executor::block_on;
use sc_tracing_graph::*;
use sc_transaction_graph::*;
use sp_runtime::transaction_validity::{ValidTransaction, InvalidTransaction};
use codec::Encode;
use test_runtime::{Block, Extrinsic, Transfer, H256, AccountId};