Skip to content

Commit 6e5fdda

Browse files
committed
tuning hint msgs
1 parent 96ac374 commit 6e5fdda

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chaindev"
3-
version = "0.53.0"
3+
version = "0.53.1"
44
edition = "2021"
55
authors = ["[email protected]"]
66
description = "Powerful development and testing utils for blockchain developers."

src/beacon_based/ddev/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1300,7 +1300,7 @@ where
13001300
let block_itv_cache = format!("{tmpdir}/block_itv");
13011301

13021302
let repo_url = env::var("CHAIN_DEV_EGG_REPO")
1303-
.c(d!("The ${{CHAIN_DEV_EGG_REPO}} not set!"))?;
1303+
.c(d!("The env var $CHAIN_DEV_EGG_REPO not set!"))?;
13041304
let gitcmd = format!("git clone {repo_url} {repo} || exit 1");
13051305
cmd::exec_output(&gitcmd).c(d!())?;
13061306

src/beacon_based/dev.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ where
755755
let block_itv_cache = format!("{tmpdir}/block_itv");
756756

757757
let repo_url = env::var("CHAIN_DEV_EGG_REPO")
758-
.c(d!("The ${{CHAIN_DEV_EGG_REPO}} not set!"))?;
758+
.c(d!("The env var $CHAIN_DEV_EGG_REPO not set!"))?;
759759
let gitcmd = format!("git clone {repo_url} {repo} || exit 1");
760760
cmd::exec_output(&gitcmd).c(d!())?;
761761

0 commit comments

Comments
 (0)