Skip to content

Commit e59544f

Browse files
RCasattashesek
authored andcommitted
add electrum 4.5.4
1 parent c42fc5f commit e59544f

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ ubuntu-20.04 ]
18-
feature: [ "4_1_5" ]
18+
feature: [ "4_1_5", "4_5_4" ]
1919

2020
steps:
2121
- run: df -h

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ bitcoin_hashes = "0.10"
2323

2424
[features]
2525
"4_1_5" = []
26+
"4_5_4" = []
2627

sha256/electrum-4.5.4-SHA256SUM

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
adce760df83b0c6c70770ef87adb0e37ac5e00a8b51b376d5240f5d1e1e74c06

src/versions.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
pub const HAS_FEATURE: bool = cfg!(any(feature = "4_1_5",));
1+
pub const HAS_FEATURE: bool = cfg!(any(feature = "4_1_5", feature = "4_5_4"));
22

3-
#[cfg(not(any(feature = "4_1_5",)))]
3+
#[cfg(not(any(feature = "4_1_5", feature = "4_5_4")))]
44
pub const VERSION: &str = "N/A";
55

66
#[cfg(feature = "4_1_5")]
77
pub const VERSION: &str = "4.1.5";
8+
9+
#[cfg(feature = "4_5_4")]
10+
pub const VERSION: &str = "4.5.4";

0 commit comments

Comments
 (0)