From 2d3f8298195d4f784c59be73363e8e9fcb6e40a2 Mon Sep 17 00:00:00 2001 From: apoorvsadana <95699312+apoorvsadana@users.noreply.github.com> Date: Thu, 11 Jan 2024 00:39:42 +0530 Subject: [PATCH] buid(node): add feature flags for DA (#1360) --- CHANGELOG.md | 1 + crates/node/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34d8cedd47..7f7100cb4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Next release +- chore: feature flags for avail and celestia DA - feat(rpc): added support for v0.5.1 JSON-RPC specs - feat(rpc): added ordered messages/events in trace fields - feat(rpc): support for starknet.rs v0.5.1 version diff --git a/crates/node/Cargo.toml b/crates/node/Cargo.toml index bc25f230c5..5d6cc39e6a 100644 --- a/crates/node/Cargo.toml +++ b/crates/node/Cargo.toml @@ -135,3 +135,5 @@ disable-transaction-fee = ["madara-runtime/disable-transaction-fee"] # Load sharingan chain-specs during the compilation # This is the way to run a sharingan chain sharingan = [] +avail = ["mc-data-availability/avail"] +celestia = ["mc-data-availability/celestia"]