|
@@ -8,9 +8,19 @@ use cdk::wallet::types::SendKind;
|
|
|
use cdk::wallet::{Wallet, WalletSubscription};
|
|
|
use cdk::Amount;
|
|
|
use rand::Rng;
|
|
|
+use tracing_subscriber::EnvFilter;
|
|
|
|
|
|
#[tokio::main]
|
|
|
async fn main() -> Result<(), Error> {
|
|
|
+ let default_filter = "debug";
|
|
|
+
|
|
|
+ let sqlx_filter = "sqlx=warn,hyper_util=warn,reqwest=warn,rustls=warn";
|
|
|
+
|
|
|
+ let env_filter = EnvFilter::new(format!("{},{}", default_filter, sqlx_filter));
|
|
|
+
|
|
|
+ // Parse input
|
|
|
+ tracing_subscriber::fmt().with_env_filter(env_filter).init();
|
|
|
+
|
|
|
// Initialize the memory store for the wallet
|
|
|
let localstore = WalletMemoryDatabase::default();
|
|
|
|
|
@@ -20,7 +30,7 @@ async fn main() -> Result<(), Error> {
|
|
|
// Define the mint URL and currency unit
|
|
|
let mint_url = "https://testnut.cashu.space";
|
|
|
let unit = CurrencyUnit::Sat;
|
|
|
- let amount = Amount::from(10);
|
|
|
+ let amount = Amount::from(50);
|
|
|
|
|
|
// Create a new wallet
|
|
|
let wallet = Wallet::new(mint_url, unit, Arc::new(localstore), &seed, None)?;
|
|
@@ -62,7 +72,7 @@ async fn main() -> Result<(), Error> {
|
|
|
// Send a token with the specified amount and spending conditions
|
|
|
let token = wallet
|
|
|
.send(
|
|
|
- amount,
|
|
|
+ 10.into(),
|
|
|
None,
|
|
|
Some(spending_conditions),
|
|
|
&SplitTarget::default(),
|