Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove CLVM-based backref decompression #425

Merged
merged 2 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cl/README.md

This file was deleted.

109 changes: 0 additions & 109 deletions cl/deserialize_w_backrefs.cl

This file was deleted.

7 changes: 0 additions & 7 deletions crates/chia-consensus/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,6 @@ test = false
doc = false
bench = false

[[bin]]
name = "self-extractor"
path = "fuzz_targets/self-extractor.rs"
test = false
doc = false
bench = false

[[bin]]
name = "parse-spends"
path = "fuzz_targets/parse-spends.rs"
Expand Down
52 changes: 0 additions & 52 deletions crates/chia-consensus/fuzz/fuzz_targets/self-extractor.rs

This file was deleted.

38 changes: 0 additions & 38 deletions crates/chia-consensus/src/compression/compressor.rs

This file was deleted.

Binary file not shown.
1 change: 0 additions & 1 deletion crates/chia-consensus/src/compression/mod.rs

This file was deleted.

1 change: 0 additions & 1 deletion crates/chia-consensus/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![doc = include_str!("../README.md")]

pub mod allocator;
pub mod compression;
pub mod error;
pub mod fast_forward;
pub mod gen;
Expand Down
5 changes: 1 addition & 4 deletions wheel/src/api.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use crate::compression;
use crate::run_generator::{
convert_spend_bundle_conds, run_block_generator, run_block_generator2, PySpend,
PySpendBundleConditions,
Expand Down Expand Up @@ -327,7 +326,7 @@ fn fast_forward_singleton<'p>(
}

#[pymodule]
pub fn chia_rs(py: Python, m: &PyModule) -> PyResult<()> {
pub fn chia_rs(_py: Python, m: &PyModule) -> PyResult<()> {
// generator functions
m.add_function(wrap_pyfunction!(run_block_generator, m)?)?;
m.add_function(wrap_pyfunction!(run_block_generator2, m)?)?;
Expand Down Expand Up @@ -481,7 +480,5 @@ pub fn chia_rs(py: Python, m: &PyModule) -> PyResult<()> {
m.add_class::<SecretKey>()?;
m.add_class::<AugSchemeMPL>()?;

compression::add_submodule(py, m)?;

Ok(())
}
15 changes: 0 additions & 15 deletions wheel/src/compression.rs

This file was deleted.

1 change: 0 additions & 1 deletion wheel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@

mod adapt_response;
mod api;
mod compression;
mod run_generator;
mod run_program;
Loading