We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d488ff6 commit e010ae4Copy full SHA for e010ae4
crates/mockcore/src/lib.rs
@@ -68,7 +68,7 @@ pub fn builder() -> Builder {
68
Builder {
69
fail_lock_unspent: false,
70
network: Network::Bitcoin,
71
- version: 250000,
+ version: 240000,
72
}
73
74
src/wallet.rs
@@ -582,7 +582,7 @@ impl Wallet {
582
583
584
pub(crate) fn check_version(client: Client) -> Result<Client> {
585
- const MIN_VERSION: usize = 250000;
+ const MIN_VERSION: usize = 240000;
586
587
let bitcoin_version = client.version()?;
588
if bitcoin_version < MIN_VERSION {
0 commit comments