|
@@ -0,0 +1,495 @@
|
|
|
+//! Integration tests for mint-wallet interactions that should work across all mint implementations
|
|
|
+//!
|
|
|
+//! These tests verify the core functionality of the wallet-mint interaction protocol,
|
|
|
+//! including minting, melting, and wallet restoration. They are designed to be
|
|
|
+//! implementation-agnostic and should pass against any compliant Cashu mint,
|
|
|
+//! including Nutshell, CDK, and other implementations that follow the Cashu NUTs.
|
|
|
+//!
|
|
|
+//! The tests use environment variables to determine which mint to connect to and
|
|
|
+//! whether to use real Lightning Network payments (regtest mode) or simulated payments.
|
|
|
+
|
|
|
+use core::panic;
|
|
|
+use std::fmt::Debug;
|
|
|
+use std::str::FromStr;
|
|
|
+use std::sync::Arc;
|
|
|
+use std::time::Duration;
|
|
|
+use std::{char, env};
|
|
|
+
|
|
|
+use anyhow::{anyhow, bail, Result};
|
|
|
+use bip39::Mnemonic;
|
|
|
+use cashu::{MeltBolt11Request, PreMintSecrets};
|
|
|
+use cdk::amount::{Amount, SplitTarget};
|
|
|
+use cdk::nuts::nut00::ProofsMethods;
|
|
|
+use cdk::nuts::{CurrencyUnit, MeltQuoteState, NotificationPayload, State};
|
|
|
+use cdk::wallet::{HttpClient, MintConnector, Wallet};
|
|
|
+use cdk_fake_wallet::create_fake_invoice;
|
|
|
+use cdk_integration_tests::init_regtest::{get_lnd_dir, LND_RPC_ADDR};
|
|
|
+use cdk_integration_tests::{get_mint_url_from_env, wait_for_mint_to_be_paid};
|
|
|
+use cdk_sqlite::wallet::memory;
|
|
|
+use futures::{SinkExt, StreamExt};
|
|
|
+use lightning_invoice::Bolt11Invoice;
|
|
|
+use ln_regtest_rs::ln_client::{LightningClient, LndClient};
|
|
|
+use serde_json::json;
|
|
|
+use tokio::time::timeout;
|
|
|
+use tokio_tungstenite::connect_async;
|
|
|
+use tokio_tungstenite::tungstenite::protocol::Message;
|
|
|
+
|
|
|
+// This is the ln wallet we use to send/receive ln payements as the wallet
|
|
|
+async fn init_lnd_client() -> LndClient {
|
|
|
+ let lnd_dir = get_lnd_dir("one");
|
|
|
+ let cert_file = lnd_dir.join("tls.cert");
|
|
|
+ let macaroon_file = lnd_dir.join("data/chain/bitcoin/regtest/admin.macaroon");
|
|
|
+ LndClient::new(
|
|
|
+ format!("https://{}", LND_RPC_ADDR),
|
|
|
+ cert_file,
|
|
|
+ macaroon_file,
|
|
|
+ )
|
|
|
+ .await
|
|
|
+ .unwrap()
|
|
|
+}
|
|
|
+
|
|
|
+/// Pays a Bolt11Invoice if it's on the regtest network, otherwise returns Ok
|
|
|
+///
|
|
|
+/// This is useful for tests that need to pay invoices in regtest mode but
|
|
|
+/// should be skipped in other environments.
|
|
|
+async fn pay_if_regtest(invoice: &Bolt11Invoice) -> Result<()> {
|
|
|
+ // Check if the invoice is for the regtest network
|
|
|
+ if invoice.network() == bitcoin::Network::Regtest {
|
|
|
+ println!("Regtest invoice");
|
|
|
+ let lnd_client = init_lnd_client().await;
|
|
|
+ lnd_client.pay_invoice(invoice.to_string()).await?;
|
|
|
+ Ok(())
|
|
|
+ } else {
|
|
|
+ // Not a regtest invoice, just return Ok
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/// Determines if we're running in regtest mode based on environment variable
|
|
|
+///
|
|
|
+/// Checks the CDK_TEST_REGTEST environment variable:
|
|
|
+/// - If set to "1", "true", or "yes" (case insensitive), returns true
|
|
|
+/// - Otherwise returns false
|
|
|
+fn is_regtest_env() -> bool {
|
|
|
+ match env::var("CDK_TEST_REGTEST") {
|
|
|
+ Ok(val) => {
|
|
|
+ let val = val.to_lowercase();
|
|
|
+ val == "1" || val == "true" || val == "yes"
|
|
|
+ }
|
|
|
+ Err(_) => false,
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/// Creates a real invoice if in regtest mode, otherwise returns a fake invoice
|
|
|
+///
|
|
|
+/// Uses the is_regtest_env() function to determine whether to
|
|
|
+/// create a real regtest invoice or a fake one for testing.
|
|
|
+async fn create_invoice_for_env(amount_sat: Option<u64>) -> Result<String> {
|
|
|
+ if is_regtest_env() {
|
|
|
+ // In regtest mode, create a real invoice
|
|
|
+ let lnd_client = init_lnd_client().await;
|
|
|
+ lnd_client
|
|
|
+ .create_invoice(amount_sat)
|
|
|
+ .await
|
|
|
+ .map_err(|e| anyhow!("Failed to create regtest invoice: {}", e))
|
|
|
+ } else {
|
|
|
+ // Not in regtest mode, create a fake invoice
|
|
|
+ let fake_invoice = create_fake_invoice(
|
|
|
+ amount_sat.expect("Amount must be defined") * 1_000,
|
|
|
+ "".to_string(),
|
|
|
+ );
|
|
|
+ Ok(fake_invoice.to_string())
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+async fn get_notification<T: StreamExt<Item = Result<Message, E>> + Unpin, E: Debug>(
|
|
|
+ reader: &mut T,
|
|
|
+ timeout_to_wait: Duration,
|
|
|
+) -> (String, NotificationPayload<String>) {
|
|
|
+ let msg = timeout(timeout_to_wait, reader.next())
|
|
|
+ .await
|
|
|
+ .expect("timeout")
|
|
|
+ .unwrap()
|
|
|
+ .unwrap();
|
|
|
+
|
|
|
+ let mut response: serde_json::Value =
|
|
|
+ serde_json::from_str(msg.to_text().unwrap()).expect("valid json");
|
|
|
+
|
|
|
+ let mut params_raw = response
|
|
|
+ .as_object_mut()
|
|
|
+ .expect("object")
|
|
|
+ .remove("params")
|
|
|
+ .expect("valid params");
|
|
|
+
|
|
|
+ let params_map = params_raw.as_object_mut().expect("params is object");
|
|
|
+
|
|
|
+ (
|
|
|
+ params_map
|
|
|
+ .remove("subId")
|
|
|
+ .unwrap()
|
|
|
+ .as_str()
|
|
|
+ .unwrap()
|
|
|
+ .to_string(),
|
|
|
+ serde_json::from_value(params_map.remove("payload").unwrap()).unwrap(),
|
|
|
+ )
|
|
|
+}
|
|
|
+
|
|
|
+/// Tests a complete mint-melt round trip with WebSocket notifications
|
|
|
+///
|
|
|
+/// This test verifies the full lifecycle of tokens:
|
|
|
+/// 1. Creates a mint quote and pays the invoice
|
|
|
+/// 2. Mints tokens and verifies the correct amount
|
|
|
+/// 3. Creates a melt quote to spend tokens
|
|
|
+/// 4. Subscribes to WebSocket notifications for the melt process
|
|
|
+/// 5. Executes the melt and verifies the payment was successful
|
|
|
+/// 6. Validates all WebSocket notifications received during the process
|
|
|
+///
|
|
|
+/// This ensures the entire mint-melt flow works correctly and that
|
|
|
+/// WebSocket notifications are properly sent at each state transition.
|
|
|
+#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
|
|
|
+async fn test_happy_mint_melt_round_trip() -> Result<()> {
|
|
|
+ let wallet = Wallet::new(
|
|
|
+ &get_mint_url_from_env(),
|
|
|
+ CurrencyUnit::Sat,
|
|
|
+ Arc::new(memory::empty().await?),
|
|
|
+ &Mnemonic::generate(12)?.to_seed_normalized(""),
|
|
|
+ None,
|
|
|
+ )?;
|
|
|
+
|
|
|
+ let (ws_stream, _) = connect_async(format!(
|
|
|
+ "{}/v1/ws",
|
|
|
+ get_mint_url_from_env().replace("http", "ws")
|
|
|
+ ))
|
|
|
+ .await
|
|
|
+ .expect("Failed to connect");
|
|
|
+ let (mut write, mut reader) = ws_stream.split();
|
|
|
+
|
|
|
+ let mint_quote = wallet.mint_quote(100.into(), None).await?;
|
|
|
+
|
|
|
+ let invoice = Bolt11Invoice::from_str(&mint_quote.request)?;
|
|
|
+ pay_if_regtest(&invoice).await.unwrap();
|
|
|
+
|
|
|
+ let proofs = wallet
|
|
|
+ .mint(&mint_quote.id, SplitTarget::default(), None)
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ let mint_amount = proofs.total_amount()?;
|
|
|
+
|
|
|
+ assert!(mint_amount == 100.into());
|
|
|
+
|
|
|
+ let invoice = create_invoice_for_env(Some(50)).await.unwrap();
|
|
|
+
|
|
|
+ let melt = wallet.melt_quote(invoice, None).await?;
|
|
|
+
|
|
|
+ write
|
|
|
+ .send(Message::Text(
|
|
|
+ serde_json::to_string(&json!({
|
|
|
+ "jsonrpc": "2.0",
|
|
|
+ "id": 2,
|
|
|
+ "method": "subscribe",
|
|
|
+ "params": {
|
|
|
+ "kind": "bolt11_melt_quote",
|
|
|
+ "filters": [
|
|
|
+ melt.id.clone(),
|
|
|
+ ],
|
|
|
+ "subId": "test-sub",
|
|
|
+ }
|
|
|
+
|
|
|
+ }))?
|
|
|
+ .into(),
|
|
|
+ ))
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ assert_eq!(
|
|
|
+ reader
|
|
|
+ .next()
|
|
|
+ .await
|
|
|
+ .unwrap()
|
|
|
+ .unwrap()
|
|
|
+ .to_text()
|
|
|
+ .unwrap()
|
|
|
+ .replace(char::is_whitespace, ""),
|
|
|
+ r#"{"jsonrpc":"2.0","result":{"status":"OK","subId":"test-sub"},"id":2}"#
|
|
|
+ );
|
|
|
+
|
|
|
+ let melt_response = wallet.melt(&melt.id).await.unwrap();
|
|
|
+ assert!(melt_response.preimage.is_some());
|
|
|
+ assert!(melt_response.state == MeltQuoteState::Paid);
|
|
|
+
|
|
|
+ let (sub_id, payload) = get_notification(&mut reader, Duration::from_millis(15000)).await;
|
|
|
+ // first message is the current state
|
|
|
+ assert_eq!("test-sub", sub_id);
|
|
|
+ let payload = match payload {
|
|
|
+ NotificationPayload::MeltQuoteBolt11Response(melt) => melt,
|
|
|
+ _ => panic!("Wrong payload"),
|
|
|
+ };
|
|
|
+
|
|
|
+ // assert_eq!(payload.amount + payload.fee_reserve, 50.into());
|
|
|
+ assert_eq!(payload.quote.to_string(), melt.id);
|
|
|
+ assert_eq!(payload.state, MeltQuoteState::Unpaid);
|
|
|
+
|
|
|
+ // get current state
|
|
|
+ let (sub_id, payload) = get_notification(&mut reader, Duration::from_millis(15000)).await;
|
|
|
+ assert_eq!("test-sub", sub_id);
|
|
|
+ let payload = match payload {
|
|
|
+ NotificationPayload::MeltQuoteBolt11Response(melt) => melt,
|
|
|
+ _ => panic!("Wrong payload"),
|
|
|
+ };
|
|
|
+ assert_eq!(payload.quote.to_string(), melt.id);
|
|
|
+ assert_eq!(payload.state, MeltQuoteState::Pending);
|
|
|
+
|
|
|
+ // get current state
|
|
|
+ let (sub_id, payload) = get_notification(&mut reader, Duration::from_millis(15000)).await;
|
|
|
+ assert_eq!("test-sub", sub_id);
|
|
|
+ let payload = match payload {
|
|
|
+ NotificationPayload::MeltQuoteBolt11Response(melt) => melt,
|
|
|
+ _ => panic!("Wrong payload"),
|
|
|
+ };
|
|
|
+ assert_eq!(payload.amount, 50.into());
|
|
|
+ assert_eq!(payload.quote.to_string(), melt.id);
|
|
|
+ assert_eq!(payload.state, MeltQuoteState::Paid);
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+}
|
|
|
+
|
|
|
+/// Tests basic minting functionality with payment verification
|
|
|
+///
|
|
|
+/// This test focuses on the core minting process:
|
|
|
+/// 1. Creates a mint quote for a specific amount (100 sats)
|
|
|
+/// 2. Verifies the quote has the correct amount
|
|
|
+/// 3. Pays the invoice (or simulates payment in non-regtest environments)
|
|
|
+/// 4. Waits for the mint to recognize the payment
|
|
|
+/// 5. Mints tokens and verifies the correct amount was received
|
|
|
+///
|
|
|
+/// This ensures the basic minting flow works correctly from quote to token issuance.
|
|
|
+#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
|
|
|
+async fn test_happy_mint_melt() -> Result<()> {
|
|
|
+ let wallet = Wallet::new(
|
|
|
+ &get_mint_url_from_env(),
|
|
|
+ CurrencyUnit::Sat,
|
|
|
+ Arc::new(memory::empty().await?),
|
|
|
+ &Mnemonic::generate(12)?.to_seed_normalized(""),
|
|
|
+ None,
|
|
|
+ )?;
|
|
|
+
|
|
|
+ let mint_amount = Amount::from(100);
|
|
|
+
|
|
|
+ let mint_quote = wallet.mint_quote(mint_amount, None).await?;
|
|
|
+
|
|
|
+ assert_eq!(mint_quote.amount, mint_amount);
|
|
|
+
|
|
|
+ let invoice = Bolt11Invoice::from_str(&mint_quote.request)?;
|
|
|
+ pay_if_regtest(&invoice).await?;
|
|
|
+
|
|
|
+ wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
|
|
|
+
|
|
|
+ let proofs = wallet
|
|
|
+ .mint(&mint_quote.id, SplitTarget::default(), None)
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ let mint_amount = proofs.total_amount()?;
|
|
|
+
|
|
|
+ assert!(mint_amount == 100.into());
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+}
|
|
|
+
|
|
|
+/// Tests wallet restoration and proof state verification
|
|
|
+///
|
|
|
+/// This test verifies the wallet restoration process:
|
|
|
+/// 1. Creates a wallet with a specific seed and mints tokens
|
|
|
+/// 2. Verifies the wallet has the expected balance
|
|
|
+/// 3. Creates a new wallet instance with the same seed but empty storage
|
|
|
+/// 4. Confirms the new wallet starts with zero balance
|
|
|
+/// 5. Restores the wallet state from the mint
|
|
|
+/// 6. Swaps the proofs to ensure they're valid
|
|
|
+/// 7. Verifies the restored wallet has the correct balance
|
|
|
+/// 8. Checks that the original proofs are now marked as spent
|
|
|
+///
|
|
|
+/// This ensures wallet restoration works correctly and that
|
|
|
+/// the mint properly tracks spent proofs across wallet instances.
|
|
|
+#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
|
|
|
+async fn test_restore() -> Result<()> {
|
|
|
+ let seed = Mnemonic::generate(12)?.to_seed_normalized("");
|
|
|
+ let wallet = Wallet::new(
|
|
|
+ &get_mint_url_from_env(),
|
|
|
+ CurrencyUnit::Sat,
|
|
|
+ Arc::new(memory::empty().await?),
|
|
|
+ &seed,
|
|
|
+ None,
|
|
|
+ )?;
|
|
|
+
|
|
|
+ let mint_quote = wallet.mint_quote(100.into(), None).await?;
|
|
|
+
|
|
|
+ let invoice = Bolt11Invoice::from_str(&mint_quote.request)?;
|
|
|
+ pay_if_regtest(&invoice).await?;
|
|
|
+
|
|
|
+ wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
|
|
|
+
|
|
|
+ let _mint_amount = wallet
|
|
|
+ .mint(&mint_quote.id, SplitTarget::default(), None)
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ assert!(wallet.total_balance().await? == 100.into());
|
|
|
+
|
|
|
+ let wallet_2 = Wallet::new(
|
|
|
+ &get_mint_url_from_env(),
|
|
|
+ CurrencyUnit::Sat,
|
|
|
+ Arc::new(memory::empty().await?),
|
|
|
+ &seed,
|
|
|
+ None,
|
|
|
+ )?;
|
|
|
+
|
|
|
+ assert!(wallet_2.total_balance().await? == 0.into());
|
|
|
+
|
|
|
+ let restored = wallet_2.restore().await?;
|
|
|
+ let proofs = wallet_2.get_unspent_proofs().await?;
|
|
|
+
|
|
|
+ wallet_2
|
|
|
+ .swap(None, SplitTarget::default(), proofs, None, false)
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ assert!(restored == 100.into());
|
|
|
+
|
|
|
+ assert_eq!(wallet_2.total_balance().await?, 100.into());
|
|
|
+
|
|
|
+ let proofs = wallet.get_unspent_proofs().await?;
|
|
|
+
|
|
|
+ let states = wallet.check_proofs_spent(proofs).await?;
|
|
|
+
|
|
|
+ for state in states {
|
|
|
+ if state.state != State::Spent {
|
|
|
+ bail!("All proofs should be spent");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+}
|
|
|
+
|
|
|
+/// Tests that change outputs in a melt quote are correctly handled
|
|
|
+///
|
|
|
+/// This test verifies the following workflow:
|
|
|
+/// 1. Mint 100 sats of tokens
|
|
|
+/// 2. Create a melt quote for 9 sats (which requires 100 sats input with 91 sats change)
|
|
|
+/// 3. Manually construct a melt request with proofs and blinded messages for change
|
|
|
+/// 4. Verify that the change proofs in the response match what's reported by the quote status
|
|
|
+///
|
|
|
+/// This ensures the mint correctly processes change outputs during melting operations
|
|
|
+/// and that the wallet can properly verify the change amounts match expectations.
|
|
|
+#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
|
|
|
+async fn test_fake_melt_change_in_quote() -> Result<()> {
|
|
|
+ let wallet = Wallet::new(
|
|
|
+ &get_mint_url_from_env(),
|
|
|
+ CurrencyUnit::Sat,
|
|
|
+ Arc::new(memory::empty().await?),
|
|
|
+ &Mnemonic::generate(12)?.to_seed_normalized(""),
|
|
|
+ None,
|
|
|
+ )?;
|
|
|
+
|
|
|
+ let mint_quote = wallet.mint_quote(100.into(), None).await?;
|
|
|
+
|
|
|
+ let bolt11 = Bolt11Invoice::from_str(&mint_quote.request)?;
|
|
|
+
|
|
|
+ pay_if_regtest(&bolt11).await?;
|
|
|
+
|
|
|
+ wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
|
|
|
+
|
|
|
+ let _mint_amount = wallet
|
|
|
+ .mint(&mint_quote.id, SplitTarget::default(), None)
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ let invoice = create_invoice_for_env(Some(9)).await?;
|
|
|
+
|
|
|
+ let proofs = wallet.get_unspent_proofs().await?;
|
|
|
+
|
|
|
+ let melt_quote = wallet.melt_quote(invoice.to_string(), None).await?;
|
|
|
+
|
|
|
+ let keyset = wallet.get_active_mint_keyset().await?;
|
|
|
+
|
|
|
+ let premint_secrets = PreMintSecrets::random(keyset.id, 100.into(), &SplitTarget::default())?;
|
|
|
+
|
|
|
+ let client = HttpClient::new(get_mint_url_from_env().parse()?, None);
|
|
|
+
|
|
|
+ let melt_request = MeltBolt11Request::new(
|
|
|
+ melt_quote.id.clone(),
|
|
|
+ proofs.clone(),
|
|
|
+ Some(premint_secrets.blinded_messages()),
|
|
|
+ );
|
|
|
+
|
|
|
+ let melt_response = client.post_melt(melt_request).await?;
|
|
|
+
|
|
|
+ assert!(melt_response.change.is_some());
|
|
|
+
|
|
|
+ let check = wallet.melt_quote_status(&melt_quote.id).await?;
|
|
|
+ let mut melt_change = melt_response.change.unwrap();
|
|
|
+ melt_change.sort_by(|a, b| a.amount.cmp(&b.amount));
|
|
|
+
|
|
|
+ let mut check = check.change.unwrap();
|
|
|
+ check.sort_by(|a, b| a.amount.cmp(&b.amount));
|
|
|
+
|
|
|
+ assert_eq!(melt_change, check);
|
|
|
+ Ok(())
|
|
|
+}
|
|
|
+
|
|
|
+#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
|
|
|
+async fn test_pay_invoice_twice() -> Result<()> {
|
|
|
+ let ln_backend = match env::var("LN_BACKEND") {
|
|
|
+ Ok(val) => Some(val),
|
|
|
+ Err(_) => env::var("CDK_MINTD_LN_BACKEND").ok(),
|
|
|
+ };
|
|
|
+
|
|
|
+ if ln_backend.map(|ln| ln.to_uppercase()) == Some("FAKEWALLET".to_string()) {
|
|
|
+ // We can only preform this test on regtest backends as fake wallet just marks the quote as paid
|
|
|
+ return Ok(());
|
|
|
+ }
|
|
|
+
|
|
|
+ let wallet = Wallet::new(
|
|
|
+ &get_mint_url_from_env(),
|
|
|
+ CurrencyUnit::Sat,
|
|
|
+ Arc::new(memory::empty().await?),
|
|
|
+ &Mnemonic::generate(12)?.to_seed_normalized(""),
|
|
|
+ None,
|
|
|
+ )?;
|
|
|
+
|
|
|
+ let mint_quote = wallet.mint_quote(100.into(), None).await?;
|
|
|
+
|
|
|
+ pay_if_regtest(&mint_quote.request.parse()?).await?;
|
|
|
+
|
|
|
+ wait_for_mint_to_be_paid(&wallet, &mint_quote.id, 60).await?;
|
|
|
+
|
|
|
+ let proofs = wallet
|
|
|
+ .mint(&mint_quote.id, SplitTarget::default(), None)
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ let mint_amount = proofs.total_amount()?;
|
|
|
+
|
|
|
+ assert_eq!(mint_amount, 100.into());
|
|
|
+
|
|
|
+ let invoice = create_invoice_for_env(Some(25)).await?;
|
|
|
+
|
|
|
+ let melt_quote = wallet.melt_quote(invoice.clone(), None).await?;
|
|
|
+
|
|
|
+ let melt = wallet.melt(&melt_quote.id).await.unwrap();
|
|
|
+
|
|
|
+ let melt_two = wallet.melt_quote(invoice, None).await?;
|
|
|
+
|
|
|
+ let melt_two = wallet.melt(&melt_two.id).await;
|
|
|
+
|
|
|
+ match melt_two {
|
|
|
+ Err(err) => match err {
|
|
|
+ cdk::Error::RequestAlreadyPaid => (),
|
|
|
+ err => {
|
|
|
+ bail!("Wrong invoice already paid: {}", err.to_string());
|
|
|
+ }
|
|
|
+ },
|
|
|
+ Ok(_) => {
|
|
|
+ bail!("Should not have allowed second payment");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ let balance = wallet.total_balance().await?;
|
|
|
+
|
|
|
+ assert_eq!(balance, (Amount::from(100) - melt.fee_paid - melt.amount));
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+}
|