From 7b1d901ea0f66b29ec046098ee5e229c5d3fdb09 Mon Sep 17 00:00:00 2001 From: rishflab Date: Fri, 12 Mar 2021 11:01:52 +1100 Subject: [PATCH] Fix incorrectly formatted tag --- swap/tests/testutils/bitcoind.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/tests/testutils/bitcoind.rs b/swap/tests/testutils/bitcoind.rs index 40151537..f6fd5800 100644 --- a/swap/tests/testutils/bitcoind.rs +++ b/swap/tests/testutils/bitcoind.rs @@ -72,7 +72,7 @@ impl Image for Bitcoind { impl Default for Bitcoind { fn default() -> Self { Bitcoind { - tag: "v0.19.1".into(), + tag: "0.19.1".into(), args: BitcoindArgs::default(), entrypoint: Some("/usr/bin/bitcoind".into()), volume: None,