Skip to content

Commit

Permalink
Updating issue references
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 28, 2021
1 parent 8c3a464 commit f6ca643
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bitcoin_hashes = "0.10.0"
strict_encoding = "1.7.4"
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.8", features = ["hex"], optional = true }
lazy_static = "1.4.0" # Remove dependency
lazy_static = "1.4.0" # TODO: #213 Remove dependency

[features]
serde = ["serde_crate", "serde_with", "bitcoin_hashes/serde", "bitcoin/use-serde"]
8 changes: 4 additions & 4 deletions chain/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ lazy_static! {
p2p_port: 8333,
rpc_port: 8332,
ln_height: 504500,
// TODO #187: update with first RGB release
// TODO #217: update with first RGB release
rgb_height: 650000,
format: ChainFormat::Bitcoin,
dust_limit: 546,
Expand Down Expand Up @@ -321,7 +321,7 @@ lazy_static! {
p2p_port: 18333,
rpc_port: 18332,
ln_height: 1,
// TODO #187: update with first RGB release
// TODO #217: update with first RGB release
rgb_height: 1835500,
format: ChainFormat::Bitcoin,
dust_limit: 546,
Expand Down Expand Up @@ -395,7 +395,7 @@ lazy_static! {
/// Liquid V1 chain parameters
static ref CHAIN_PARAMS_LIQUIDV1: ChainParams = ChainParams {
name: "liquidv1".to_string(),
// TODO #188: check Liquid network magic number and change this if needed
// TODO #216: check Liquid network magic number and change this if needed
p2p_magic: P2pNetworkId::Mainnet,
genesis_hash: BlockHash::from_slice(GENESIS_HASH_LIQUIDV1)
.expect("Liquid V1 genesis hash contains invalid binary data"),
Expand Down Expand Up @@ -1002,7 +1002,7 @@ impl FromStr for Chain {

#[cfg(test)]
mod test {
#![allow(deprecated)] // TODO: Refactor with strict_encoding_test crate
#![allow(deprecated)] // TODO: #210 Refactor with strict_encoding_test crate
use strict_encoding::test_helpers::*;

use super::*;
Expand Down

0 comments on commit f6ca643

Please sign in to comment.