Skip to content

Commit

Permalink
Update patches
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Dec 26, 2024
1 parent f016a86 commit a936c8a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions third-party/patches/substrate_client_transaction_pool.patch
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
diff --git a/substrate/client/transaction-pool/Cargo.toml b/substrate/client/transaction-pool/Cargo.toml
index d346add..d270d0f 100644
index 72586b9..8d94fbd 100644
--- a/substrate/client/transaction-pool/Cargo.toml
+++ b/substrate/client/transaction-pool/Cargo.toml
@@ -25,6 +25,6 @@ itertools = { workspace = true }
@@ -25,10 +25,10 @@ itertools = { workspace = true }
linked-hash-map = { workspace = true }
log = { workspace = true, default-features = true }
-parking_lot = { workspace = true, default-features = true }
-serde = { features = ["derive"], workspace = true, default-features = true }
+parking_lot = { workspace = true, features = ["serde"] }
+serde = { features = ["derive", "rc"], workspace = true, default-features = true }
thiserror = { workspace = true }
prometheus-endpoint = { workspace = true, default-features = true }
@@ -42,4 +42,6 @@ tokio-stream = { workspace = true }
tokio = { workspace = true, default-features = true, features = ["macros", "time"] }
sc-client-api = { workspace = true, default-features = true }
sc-transaction-pool-api = { workspace = true, default-features = true }
sc-utils = { workspace = true, default-features = true }
-serde = { features = ["derive"], workspace = true, default-features = true }
+serde = { features = ["derive", "rc"], workspace = true, default-features = true }
sp-api = { workspace = true, default-features = true }
sp-blockchain = { workspace = true, default-features = true }
@@ -42,4 +42,6 @@ tokio = { workspace = true, default-features = true, features = ["macros", "time
tokio-stream = { workspace = true }

+test-fuzz = { path = "../../../../../test-fuzz" }
+
Expand Down
4 changes: 2 additions & 2 deletions third-party/third_party.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"flags": ["EXPENSIVE", "SKIP_NIGHTLY"],
"url": "https://github.com/anza-xyz/agave",
"rev": "ee31e3137d017c581d0bc13c24cedf050bb0f3e4",
"rev": "e063c19025d65870a513fcc010c47685dc989d52",
"patch": "agave.patch",
"subdir": ".",
"package": "solana-bpf-loader-program",
Expand All @@ -20,7 +20,7 @@
{
"flags": ["EXPENSIVE", "SKIP_NIGHTLY"],
"url": "https://github.com/paritytech/polkadot-sdk",
"rev": "4e805ca05067f6ed970f33f9be51483185b0cc0b",
"rev": "ca7817922148c1e6f6856138998f7135f42f3f4f",
"patch": "substrate_client_transaction_pool.patch",
"subdir": ".",
"package": "sc-transaction-pool",
Expand Down

0 comments on commit a936c8a

Please sign in to comment.