Skip to content

Commit 0fce73c

Browse files
authored
Merge pull request #103 from who-biz/min-compat-node-3.5.0
Increase minimum node compat to v3.5.0
2 parents aaf8ba3 + 7e54b5f commit 0fce73c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/wallet.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use semver::Version;
2222
use std::thread;
2323
use std::time::Duration;
2424

25-
const MIN_COMPAT_NODE_VERSION: &str = "3.0.0";
25+
const MIN_COMPAT_NODE_VERSION: &str = "3.5.0";
2626

2727
pub fn wallet_command(wallet_args: &ArgMatches<'_>, config: GlobalWalletConfig) -> i32 {
2828
// Get defaults from the global config
@@ -55,7 +55,7 @@ pub fn wallet_command(wallet_args: &ArgMatches<'_>, config: GlobalWalletConfig)
5555
&v.node_version
5656
};
5757
println!("The Epic Node in use (version {}) is outdated and incompatible with this wallet version.", version);
58-
println!("Please update the node to version 3.0.0 or later and try again.");
58+
println!("Please update the node to version 3.5.0 or later and try again.");
5959
return 1;
6060
}
6161
}

0 commit comments

Comments
 (0)