Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
v0.2.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 3, 2020
1 parent fc00e9e commit 4144a66
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 21 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

v0.2.0-rc.1
-----------
- Updating issuance to match the latest RGB20 schema changes
- Internal optimizations for RGB20 processor mod
- Typos and dependency fixes
- Using f64 instead of f32 for internal accounting amounts representations

v0.2.0-beta.4
-------------

Expand Down
26 changes: 14 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "rgb_node"
description = "RGB node"
version = "0.2.0-beta.5"
version = "0.2.0-rc.1"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
license = "MIT"
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
edition = "2018"
readme = "README.md"
exclude = [".github", "/doc", "/test", "Dockerfile"]
exclude = [".github", "/data", "/doc", "/sample", "Dockerfile"]

[lib]
name = "rgb"
Expand All @@ -32,9 +32,9 @@ required-features = ["cli"]
# LNP/BP crates
amplify = "~2.3.1"
amplify_derive = "~2.3.0"
lnpbp = { version = "=0.2.0-beta.4", features = ["lnp", "url", "websockets"] }
lnpbp_derive = "=0.2.0-beta.4"
lnpbp_services = "=0.2.0-beta.4"
lnpbp = { version = "=0.2.0-rc.1", features = ["lnp", "url", "websockets", "keygen"] }
lnpbp_derive = "=0.2.0-rc.1"
lnpbp_services = "=0.2.0-rc.1"
# Rust language
lazy_static = "~1.4.0"
nix = { version = "~0.19.0", optional = true }
Expand Down
Binary file modified sample/consignment.rgb
Binary file not shown.
Binary file modified sample/dest_tx.psbt
Binary file not shown.
1 change: 0 additions & 1 deletion src/api/fungible.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ pub struct Issue {
pub precision: u8,

/// Asset allocation, in form of <amount>@<txid>:<vout>
#[clap(short, long)]
pub allocation: Vec<OutpointCoins>,

/// Outputs controlling inflation (secondary issue);
Expand Down
3 changes: 1 addition & 2 deletions src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,4 @@ pub const FUNGIBLED_RPC_ENDPOINT: &'static str =
pub const FUNGIBLED_PUB_ENDPOINT: &'static str =
"lnpz:{data_dir}/{network}/fungibled.pub";

pub const DEFAULT_ELECTRUM_ENDPOINT: &'static str =
"electrum.blockstream.info:60001";
pub const DEFAULT_ELECTRUM_ENDPOINT: &'static str = "pandora.network:60001";
2 changes: 1 addition & 1 deletion src/contracts/fungible/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ impl Runtime {
debug!("Got TRANSFER {}", transfer);

// TODO: Check inputs that they really exist and have sufficient amount
// of asset for the transfer operation
// of asset for the transfer operation

trace!("Looking for asset information");
let mut asset = self.cacher.asset(transfer.contract_id)?.clone();
Expand Down

0 comments on commit 4144a66

Please sign in to comment.