Browse Source

chore: remove unused redb

thesimplekid 1 month ago
parent
commit
d99f228acf
2 changed files with 3 additions and 3 deletions
  1. 1 1
      crates/cdk-mintd/Cargo.toml
  2. 2 2
      misc/itests.sh

+ 1 - 1
crates/cdk-mintd/Cargo.toml

@@ -20,7 +20,7 @@ lnbits = ["dep:cdk-lnbits"]
 fakewallet = ["dep:cdk-fake-wallet"]
 grpc-processor = ["dep:cdk-payment-processor", "cdk-signatory/grpc"]
 sqlcipher = ["cdk-sqlite/sqlcipher"]
-# MSRV is not committed to with redb enabled
+# MSRV is not committed to with swagger enabled
 swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"]
 redis = ["cdk-axum/redis"]
 auth = ["cdk/auth", "cdk-sqlite/auth"]

+ 2 - 2
misc/itests.sh

@@ -109,7 +109,7 @@ export CDK_MINTD_MNEMONIC="eye survey guilt napkin crystal cup whisper salt lugg
 export RUST_BACKTRACE=1
 
 echo "Starting cln mintd"
-cargo run --bin cdk-mintd --features "redb" &
+cargo run --bin cdk-mintd &
 export CDK_MINTD_PID=$!
 
 
@@ -160,7 +160,7 @@ export CDK_MINTD_LN_BACKEND="lnd"
 export CDK_MINTD_MNEMONIC="cattle gold bind busy sound reduce tone addict baby spend february strategy"
 
 echo "Starting lnd mintd"
-cargo run --bin cdk-mintd --features "redb" &
+cargo run --bin cdk-mintd &
 export CDK_MINTD_LND_PID=$!
 
 URL="http://$CDK_ITESTS_MINT_ADDR:$CDK_ITESTS_MINT_PORT_1/v1/info"