Revert "Support receiving verified transactions from the vortexor (#5321)"#6525
Revert "Support receiving verified transactions from the vortexor (#5321)"#6525steviez merged 1 commit intoanza-xyz:masterfrom
Conversation
…lana-labs#5321)" This reverts commit e44c17d.
|
Backports to the beta branch are to be avoided unless absolutely necessary for fixing bugs, security issues, and perf regressions. Changes intended for backport should be structured such that a minimum effective diff can be committed separately from any refactoring, plumbing, cleanup, etc that are not strictly necessary to achieve the goal. Any of the latter should go only into master and ride the normal stabilization schedule. Exceptions include CI/metrics changes, CLI improvements and documentation updates on a case by case basis. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #6525 +/- ##
========================================
Coverage 82.8% 82.8%
========================================
Files 851 849 -2
Lines 379898 379617 -281
========================================
- Hits 314626 314532 -94
+ Misses 65272 65085 -187 🚀 New features to boost your workflow:
|
)" (#6525) The reverted commit introduced the solana-vortexor-receiver crate which was used by solana-core. solana-vortexor-receiver was not set to publish which means solana-core cannot be published either. So, back out solana-vortexor in order to unblock crate publishing This reverts commit e44c17d (cherry picked from commit 63cf093) # Conflicts: # Cargo.lock # Cargo.toml # programs/sbf/Cargo.lock # svm/examples/Cargo.lock # vortexor-receiver/Cargo.toml
)" (#6525) The reverted commit introduced the solana-vortexor-receiver crate which was used by solana-core. solana-vortexor-receiver was not set to publish which means solana-core cannot be published either. So, back out solana-vortexor in order to unblock crate publishing This reverts commit e44c17d (cherry picked from commit 63cf093)
…or (#5321)" (backport of #6525) (#6529) The reverted commit introduced the solana-vortexor-receiver crate which was used by solana-core. solana-vortexor-receiver was not set to publish which means solana-core cannot be published either. So, back out solana-vortexor in order to unblock crate publishing This reverts commit e44c17d (cherry picked from commit 63cf093) --------- Co-authored-by: steviez <steven@anza.xyz>
Problem
We need to publish
v2.3crates. Thevortextor-receivercrates is currently marked withpublish = falseagave/vortexor-receiver/Cargo.toml
Line 5 in 7d96421
but is used by
solana-core(which is published)agave/core/Cargo.toml
Line 162 in 7d96421
solana-coredepending on a crate that is not published makes it unpublishable.Summary of Changes
This reverts commit e44c17d (introduced by #5321) in order to unblock releases. Note that only a
v2.3tag will be necessary as the commit that is being backed out is not present inv2.2