Skip to content

Commit f574a81

Browse files
committed
update rgb-lib to 0.3.0-alpha.11
1 parent 691a760 commit f574a81

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

lightning-invoice/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ serde = { version = "1.0.118", optional = true }
2727
bitcoin = { version = "0.30.2", default-features = false }
2828

2929
# RGB and related
30-
rgb-lib = { version = "0.3.0-alpha.10", features = [
30+
rgb-lib = { version = "0.3.0-alpha.11", features = [
3131
"electrum",
3232
"esplora",
3333
] }

lightning/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ libm = { version = "0.2", optional = true, default-features = false }
5656

5757
# RGB and related
5858
futures = "0.3"
59-
rgb-lib = { version = "0.3.0-alpha.10", features = [
59+
rgb-lib = { version = "0.3.0-alpha.11", features = [
6060
"electrum",
6161
"esplora",
6262
] }

lightning/src/rgb_utils/mod.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use rgb_lib::{
2020
bitcoin::psbt::Psbt as RgbLibPsbt,
2121
wallet::{
2222
rust_only::{AssetColoringInfo, ColoringInfo},
23-
AssetIface, DatabaseType, Outpoint, WalletData,
23+
DatabaseType, Outpoint, WalletData,
2424
},
2525
BitcoinNetwork, ConsignmentExt, ContractId, Error as RgbLibError, FileContent, RgbTransfer,
2626
RgbTransport, RgbTxid, Wallet,
@@ -307,7 +307,6 @@ where
307307
}
308308

309309
let asset_coloring_info = AssetColoringInfo {
310-
iface: AssetIface::RGB20,
311310
input_outpoints: vec![Outpoint {
312311
txid: funding_outpoint.txid.to_string(),
313312
vout: funding_outpoint.index as u32,
@@ -364,7 +363,6 @@ pub(crate) fn color_htlc(
364363
let contract_id = transfer_info.contract_id;
365364

366365
let asset_coloring_info = AssetColoringInfo {
367-
iface: AssetIface::RGB20,
368366
input_outpoints: vec![Outpoint {
369367
txid: commitment_txid,
370368
vout: consignment_htlc_outpoint.vout,
@@ -431,7 +429,6 @@ pub(crate) fn color_closing(
431429
}
432430

433431
let asset_coloring_info = AssetColoringInfo {
434-
iface: AssetIface::RGB20,
435432
input_outpoints: vec![Outpoint {
436433
txid: funding_outpoint.txid.to_string(),
437434
vout: funding_outpoint.index as u32,

0 commit comments

Comments
 (0)