From 239800cfcf40bd46da2f1ca37271c1b5d7291230 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 3 Jul 2023 09:12:29 -0400 Subject: [PATCH 1/2] Update monero-tests workflow to new name for the processor --- .github/workflows/monero-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/monero-tests.yaml b/.github/workflows/monero-tests.yaml index 6a382475..b098080b 100644 --- a/.github/workflows/monero-tests.yaml +++ b/.github/workflows/monero-tests.yaml @@ -55,4 +55,4 @@ jobs: if: ${{ matrix.version != 'v0.18.2.0' }} run: | cargo test --package monero-serai --all-features --test '*' - cargo test --package processor --all-features monero + cargo test --package serai-processor --all-features monero From 08e7ca955b4dc25784627ec529948cc89a4bb516 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 3 Jul 2023 12:40:56 -0400 Subject: [PATCH 2/2] Correct depends for processor-messages --- processor/messages/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/processor/messages/Cargo.toml b/processor/messages/Cargo.toml index 26699467..6e67e791 100644 --- a/processor/messages/Cargo.toml +++ b/processor/messages/Cargo.toml @@ -22,6 +22,6 @@ bincode = "1" dkg = { path = "../../crypto/dkg", features = ["serde"] } serai-primitives = { path = "../../substrate/primitives" } -serai-in-instructions-primitives = { path = "../../substrate/in-instructions/primitives" } -serai-tokens-primitives = { path = "../../substrate/tokens/primitives" } -serai-validator-sets-primitives = { path = "../../substrate/validator-sets/primitives" } +in-instructions-primitives = { package = "serai-in-instructions-primitives", path = "../../substrate/in-instructions/primitives" } +tokens-primitives = { package = "serai-tokens-primitives", path = "../../substrate/tokens/primitives" } +validator-sets-primitives = { package = "serai-validator-sets-primitives", path = "../../substrate/validator-sets/primitives" }