Skip to content

Commit

Permalink
fix: integrationtest
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Dec 23, 2023
1 parent 1ba511f commit b4d2902
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integrationtests/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ use tokio::time::{sleep_until, Instant};
#[test]
#[cfg(feature = "integration-tests")]
pub fn test_integration() -> anyhow::Result<()> {
use mokshamint::config::LightningFeeConfig;

let docker = clients::Cli::default();
let node = docker.run(Postgres::default());
let host_port = node.get_host_port_ipv4(5432);
Expand Down Expand Up @@ -46,7 +48,7 @@ pub fn test_integration() -> anyhow::Result<()> {
"my_admin_key",
"http://127.0.0.1:6100",
)))
.with_fee(0.0, 0)
.with_fee(LightningFeeConfig::new(0.0, 0))
.build();

let result = mokshamint::server::run_server(
Expand Down

0 comments on commit b4d2902

Please sign in to comment.