fix: Issue where binaries would not know their own versions

- CARGO_PKG_VERSION used everywhere instead of VERGEN_GIT_DESCRIBE
- Reject makers <3.2.0-rc.1
This commit is contained in:
Binarybaron 2025-10-14 14:42:27 +02:00
parent c3dfbd4bb5
commit f5234f9af8
6 changed files with 20 additions and 8 deletions

View file

@ -6,7 +6,7 @@ import { isTestnet } from "store/config";
// const MIN_ASB_VERSION = "1.0.0-alpha.1" // First version to support new libp2p protocol
// const MIN_ASB_VERSION = "1.1.0-rc.3" // First version with support for bdk > 1.0
// const MIN_ASB_VERSION = "2.0.0-beta.1"; // First version with support for tx_early_refund
const MIN_ASB_VERSION = "3.0.0";
const MIN_ASB_VERSION = "3.2.0-rc.1";
export function providerToConcatenatedMultiAddr(provider: Maker) {
return new Multiaddr(provider.multiAddr)