diff --git a/polkadot/api/Cargo.toml b/polkadot/api/Cargo.toml
index c8ed512a95362315b8fd0369ac2fb3cd9e1ab553..bf51a09ef2a63059e98e8d2b2278a27620852c14 100644
--- a/polkadot/api/Cargo.toml
+++ b/polkadot/api/Cargo.toml
@@ -8,15 +8,15 @@ error-chain = "0.12"
 polkadot-executor = { path = "../executor" }
 polkadot-runtime = { path = "../runtime" }
 polkadot-primitives = { path = "../primitives" }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-executive = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-io = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-executive = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate" }
+substrate-client = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
+substrate-executor = { git = "https://github.com/paritytech/substrate" }
+substrate-state-machine = { git = "https://github.com/paritytech/substrate" }
 log = "0.3"
 
 [dev-dependencies]
-substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-keyring = { git = "https://github.com/paritytech/substrate" }
diff --git a/polkadot/availability-store/Cargo.toml b/polkadot/availability-store/Cargo.toml
index e26f946547f321dd353fbc273c2b90fb51ea4fa2..66dc3e78f62ee602e954e8b1118792fdbd0f88f0 100644
--- a/polkadot/availability-store/Cargo.toml
+++ b/polkadot/availability-store/Cargo.toml
@@ -8,8 +8,8 @@ authors = ["Parity Technologies <admin@parity.io>"]
 polkadot-primitives = { path = "../primitives" }
 parking_lot = "0.4"
 log = "0.3"
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
 kvdb = { git = "https://github.com/paritytech/parity-common.git" }
 kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common.git" }
 kvdb-memorydb = { git = "https://github.com/paritytech/parity-common.git" }
diff --git a/polkadot/cli/Cargo.toml b/polkadot/cli/Cargo.toml
index 47fa33182a3da781d56fde35e27652123acdc390..a3ab18f0f575aa24ff3651488421c1ac9d6b0fcc 100644
--- a/polkadot/cli/Cargo.toml
+++ b/polkadot/cli/Cargo.toml
@@ -9,5 +9,5 @@ log = "0.3"
 tokio = "0.1.7"
 futures = "0.1.17"
 exit-future = "0.1"
-substrate-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-cli = { git = "https://github.com/paritytech/substrate" }
 polkadot-service = { path = "../service" }
diff --git a/polkadot/collator/Cargo.toml b/polkadot/collator/Cargo.toml
index c4a923c94dacc5225a8652e7638df021872305ef..4a3ca0d88e34c0906b215f253271d4a5652e4d73 100644
--- a/polkadot/collator/Cargo.toml
+++ b/polkadot/collator/Cargo.toml
@@ -6,13 +6,13 @@ description = "Collator node implementation"
 
 [dependencies]
 futures = "0.1.17"
-substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-client = { git = "https://github.com/paritytech/substrate" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
 polkadot-api = { path = "../api" }
 polkadot-runtime = { path = "../runtime", version = "0.1" }
 polkadot-primitives = { path = "../primitives", version = "0.1" }
 polkadot-cli = { path = "../cli" }
 log = "0.4"
-ed25519 = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+ed25519 = { git = "https://github.com/paritytech/substrate" }
 tokio = "0.1.7"
diff --git a/polkadot/consensus/Cargo.toml b/polkadot/consensus/Cargo.toml
index 0fb66c831a440132530f831cf30c03df2e47acb0..d2565a772f9a7806f2cc4b4b526502472fc6e30f 100644
--- a/polkadot/consensus/Cargo.toml
+++ b/polkadot/consensus/Cargo.toml
@@ -7,7 +7,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
 futures = "0.1.17"
 parking_lot = "0.4"
 tokio = "0.1.7"
-ed25519 = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+ed25519 = { git = "https://github.com/paritytech/substrate" }
 error-chain = "0.12"
 log = "0.3"
 exit-future = "0.1"
@@ -19,12 +19,12 @@ polkadot-primitives = { path = "../primitives" }
 polkadot-runtime = { path = "../runtime" }
 polkadot-statement-table = { path = "../statement-table" }
 polkadot-transaction-pool = { path = "../transaction-pool" }
-substrate-bft = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-bft = { git = "https://github.com/paritytech/substrate" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-support = { git = "https://github.com/paritytech/substrate" }
+substrate-client = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate" }
 
 [dev-dependencies]
-substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-keyring = { git = "https://github.com/paritytech/substrate" }
diff --git a/polkadot/executor/Cargo.toml b/polkadot/executor/Cargo.toml
index 86e80f05c30bf8734a10d2b039301fdec5c0e85b..5c45e4431acdccfbb48650749f4a451d232f84ef 100644
--- a/polkadot/executor/Cargo.toml
+++ b/polkadot/executor/Cargo.toml
@@ -5,6 +5,6 @@ authors = ["Parity Technologies <admin@parity.io>"]
 description = "Polkadot node implementation in Rust."
 
 [dependencies]
-substrate-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-executor = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
 polkadot-runtime = { path = "../runtime" }
diff --git a/polkadot/network/Cargo.toml b/polkadot/network/Cargo.toml
index 419de013131cb01895546e95a5f091f119aec5f0..7d6e0dd16a2dba3d4ded267a8e4d6091d22b29f9 100644
--- a/polkadot/network/Cargo.toml
+++ b/polkadot/network/Cargo.toml
@@ -10,12 +10,12 @@ polkadot-api = { path = "../api" }
 polkadot-availability-store = { path = "../availability-store" }
 polkadot-consensus = { path = "../consensus" }
 polkadot-primitives = { path = "../primitives" }
-substrate-bft = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-codec-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-ed25519 = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-bft = { git = "https://github.com/paritytech/substrate" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-codec-derive = { git = "https://github.com/paritytech/substrate" }
+substrate-network = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
+ed25519 = { git = "https://github.com/paritytech/substrate" }
 futures = "0.1"
 tokio = "0.1.7"
 log = "0.4"
diff --git a/polkadot/parachain/Cargo.toml b/polkadot/parachain/Cargo.toml
index 5ae7f5f6428266a132f4db6fcdce77087ce3b688..e9d2d2160c8dbad8d9b630e15384caf46db53c4e 100644
--- a/polkadot/parachain/Cargo.toml
+++ b/polkadot/parachain/Cargo.toml
@@ -5,8 +5,8 @@ authors = ["Parity Technologies <admin@parity.io>"]
 description = "Types and utilities for creating and working with parachains"
 
 [dependencies]
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-codec-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
+substrate-codec = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-codec-derive = { git = "https://github.com/paritytech/substrate", default-features = false }
 wasmi = { version = "0.4", optional = true }
 error-chain = { version = "0.12", optional = true }
 
diff --git a/polkadot/primitives/Cargo.toml b/polkadot/primitives/Cargo.toml
index e6798b0fbb96c04ad591163a7eb299c59e869a9c..503f84d26e80aeaf830918ae63592041d9c263c3 100644
--- a/polkadot/primitives/Cargo.toml
+++ b/polkadot/primitives/Cargo.toml
@@ -6,14 +6,14 @@ authors = ["Parity Technologies <admin@parity.io>"]
 [dependencies]
 serde = { version = "1.0", default_features = false }
 serde_derive = { version = "1.0", optional = true }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default_features = false }
-substrate-codec-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default_features = false }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default_features = false }
-substrate-runtime-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default_features = false }
-substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default_features = false }
+substrate-codec = { git = "https://github.com/paritytech/substrate", default_features = false }
+substrate-codec-derive = { git = "https://github.com/paritytech/substrate", default_features = false }
+substrate-primitives = { git = "https://github.com/paritytech/substrate", default_features = false }
+substrate-runtime-std = { git = "https://github.com/paritytech/substrate", default_features = false }
+substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", default_features = false }
 
 [dev-dependencies]
-substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-serializer = { git = "https://github.com/paritytech/substrate" }
 pretty_assertions = "0.4"
 
 [features]
diff --git a/polkadot/runtime/Cargo.toml b/polkadot/runtime/Cargo.toml
index 17845f60c66df619568102f149e8a389d2a18a1c..06912458f03be7f6a7fc2ceb7be5bb05ae0c531c 100644
--- a/polkadot/runtime/Cargo.toml
+++ b/polkadot/runtime/Cargo.toml
@@ -10,25 +10,25 @@ serde = { version = "1.0", default_features = false }
 serde_derive = { version = "1.0", optional = true }
 safe-mix = { version = "1.0", default_features = false}
 polkadot-primitives = { path = "../primitives", default_features = false }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-codec-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-council = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-democracy = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-executive = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-codec-derive = { git = "https://github.com/paritytech/substrate" }
+substrate-serializer = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-std = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-io = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-support = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
+substrate-keyring = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-balances = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-consensus = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-council = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-democracy = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-executive = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-session = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-staking = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-system = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-timestamp = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-version = { git = "https://github.com/paritytech/substrate" }
 
 [dev-dependencies]
 hex-literal = "0.1.0"
diff --git a/polkadot/runtime/wasm/Cargo.toml b/polkadot/runtime/wasm/Cargo.toml
index 524d789caebc182bb87f3383f3f6a368b00df9ae..ca343e917a8d94b507cc25f58a892858c186b23a 100644
--- a/polkadot/runtime/wasm/Cargo.toml
+++ b/polkadot/runtime/wasm/Cargo.toml
@@ -10,23 +10,23 @@ crate-type = ["cdylib"]
 integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git", branch = "master" }
 polkadot-primitives = { path = "../../primitives", default-features = false }
 safe-mix = { version = "1.0", default-features = false }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-codec-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-council = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-democracy = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-executive = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
-substrate-runtime-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
+substrate-codec = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-codec-derive = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-std = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-io = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-support = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-balances = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-consensus = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-council = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-democracy = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-executive = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-session = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-staking = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-system = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false }
+substrate-runtime-version = { git = "https://github.com/paritytech/substrate", default-features = false }
 
 [features]
 default = []
diff --git a/polkadot/service/Cargo.toml b/polkadot/service/Cargo.toml
index fd7e65e70c5471394357d049f7b51d0f662b58c9..2de430603a3490df7d38fa9ecd2fdfab519ceac8 100644
--- a/polkadot/service/Cargo.toml
+++ b/polkadot/service/Cargo.toml
@@ -11,7 +11,7 @@ log = "0.3"
 slog = "^2"
 tokio = "0.1.7"
 hex-literal = "0.1"
-ed25519 = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+ed25519 = { git = "https://github.com/paritytech/substrate" }
 polkadot-availability-store = { path = "../availability-store" }
 polkadot-primitives = { path = "../primitives" }
 polkadot-runtime = { path = "../runtime" }
@@ -20,9 +20,9 @@ polkadot-executor = { path = "../executor" }
 polkadot-api = { path = "../api" }
 polkadot-transaction-pool = { path = "../transaction-pool" }
 polkadot-network = { path = "../network" }
-substrate-runtime-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-runtime-io = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
+substrate-network = { git = "https://github.com/paritytech/substrate" }
+substrate-client = { git = "https://github.com/paritytech/substrate" }
+substrate-service = { git = "https://github.com/paritytech/substrate" }
+substrate-telemetry = { git = "https://github.com/paritytech/substrate" }
diff --git a/polkadot/statement-table/Cargo.toml b/polkadot/statement-table/Cargo.toml
index 0f33495e1491279e8f029f692e882661e6233875..25522ce6f31122b012e1624fb720fa872acca290 100644
--- a/polkadot/statement-table/Cargo.toml
+++ b/polkadot/statement-table/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.1.0"
 authors = ["Parity Technologies <admin@parity.io>"]
 
 [dependencies]
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-codec-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-codec-derive = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
 polkadot-primitives = { path = "../primitives" }
diff --git a/polkadot/test-parachains/adder/Cargo.toml b/polkadot/test-parachains/adder/Cargo.toml
index cde37e9e7cbe35c881b038211b842532e6ed3e0e..98da71517fde5736a72709438bd04f217095aca9 100644
--- a/polkadot/test-parachains/adder/Cargo.toml
+++ b/polkadot/test-parachains/adder/Cargo.toml
@@ -6,5 +6,5 @@ description = "Test parachain which adds to a number as its state transition"
 
 [dependencies]
 polkadot-parachain = { path = "../../parachain/", default-features = false }
-substrate-codec-derive = { git = "https://github.com/paritytech/substrate", branch = "polkadot", default-features = false }
+substrate-codec-derive = { git = "https://github.com/paritytech/substrate", default-features = false }
 tiny-keccak = "1.4"
diff --git a/polkadot/test-parachains/adder/collator/Cargo.toml b/polkadot/test-parachains/adder/collator/Cargo.toml
index 6a2179b76603f6cd483f89e3d5bb18925ef9fd40..ed735ae310e25e57838840ea80391bd3f1295bcf 100644
--- a/polkadot/test-parachains/adder/collator/Cargo.toml
+++ b/polkadot/test-parachains/adder/collator/Cargo.toml
@@ -8,7 +8,7 @@ adder = { path = ".." }
 polkadot-parachain = { path = "../../../parachain" }
 polkadot-collator = { path = "../../../collator" }
 polkadot-primitives = { path = "../../../primitives" }
-ed25519 = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+ed25519 = { git = "https://github.com/paritytech/substrate" }
 parking_lot = "0.4"
 ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
 futures = "0.1"
diff --git a/polkadot/transaction-pool/Cargo.toml b/polkadot/transaction-pool/Cargo.toml
index 524a4136cae21c5e5d8813a57c32eb134673f265..d27480cd2851b6c474d6e2f7ab20756c45b3da86 100644
--- a/polkadot/transaction-pool/Cargo.toml
+++ b/polkadot/transaction-pool/Cargo.toml
@@ -10,10 +10,10 @@ parking_lot = "0.4"
 polkadot-api = { path = "../api" }
 polkadot-primitives = { path = "../primitives" }
 polkadot-runtime = { path = "../runtime" }
-substrate-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-codec = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-extrinsic-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
-ed25519 = { git = "https://github.com/paritytech/substrate", branch = "polkadot" }
+substrate-client = { git = "https://github.com/paritytech/substrate" }
+substrate-codec = { git = "https://github.com/paritytech/substrate" }
+substrate-keyring = { git = "https://github.com/paritytech/substrate" }
+substrate-extrinsic-pool = { git = "https://github.com/paritytech/substrate" }
+substrate-primitives = { git = "https://github.com/paritytech/substrate" }
+substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate" }
+ed25519 = { git = "https://github.com/paritytech/substrate" }