-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
116 changed files
with
335 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
authors = ["Crypto Garage"] | ||
authors = ["Crypto Garage", "benny b <[email protected]>"] | ||
description = "Creation, signing and verification of Discreet Log Contracts (DLC) transactions." | ||
homepage = "https://github.com/p2pderivatives/rust-dlc" | ||
homepage = "https://github.com/bennyhodl/rust-dlc" | ||
license-file = "../LICENSE" | ||
name = "dlc" | ||
repository = "https://github.com/p2pderivatives/rust-dlc/tree/master/dlc" | ||
name = "ddk-dlc" | ||
repository = "https://github.com/bennyhodl/rust-dlc/tree/master/dlc" | ||
version = "0.7.0" | ||
|
||
[dependencies] | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
[package] | ||
authors = ["Crypto Garage"] | ||
authors = ["Crypto Garage", "benny b <[email protected]>"] | ||
description = "Creation and handling of Discrete Log Contracts (DLC)." | ||
edition = "2018" | ||
homepage = "https://github.com/p2pderivatives/rust-dlc" | ||
homepage = "https://github.com/bennyhodl/rust-dlc" | ||
license-file = "../LICENSE" | ||
name = "dlc-manager" | ||
repository = "https://github.com/p2pderivatives/rust-dlc/tree/master/dlc-manager" | ||
name = "ddk-manager" | ||
repository = "https://github.com/bennyhodl/rust-dlc/tree/master/dlc-manager" | ||
version = "0.7.0" | ||
|
||
[features] | ||
default = ["std"] | ||
std = ["dlc/std", "dlc-messages/std", "dlc-trie/std", "bitcoin/std", "lightning/std"] | ||
std = ["ddk-dlc/std", "ddk-messages/std", "ddk-trie/std", "bitcoin/std", "lightning/std"] | ||
fuzztarget = ["rand_chacha"] | ||
parallel = ["dlc-trie/parallel"] | ||
use-serde = ["serde", "dlc/use-serde", "dlc-messages/use-serde", "dlc-trie/use-serde"] | ||
parallel = ["ddk-trie/parallel"] | ||
use-serde = ["serde", "ddk-dlc/use-serde", "ddk-messages/use-serde", "ddk-trie/use-serde"] | ||
|
||
[dependencies] | ||
async-trait = "0.1.50" | ||
bitcoin = { version = "0.32.2", default-features = false } | ||
dlc = { version = "0.7.0", default-features = false, path = "../dlc" } | ||
dlc-messages = { version = "0.7.0", default-features = false, path = "../dlc-messages" } | ||
dlc-trie = { version = "0.7.0", default-features = false, path = "../dlc-trie" } | ||
ddk-dlc = { version = "0.7.0", default-features = false, path = "../ddk-dlc" } | ||
ddk-messages = { version = "0.7.0", default-features = false, path = "../ddk-messages" } | ||
ddk-trie = { version = "0.7.0", default-features = false, path = "../ddk-trie" } | ||
hex = { package = "hex-conservative", version = "0.1" } | ||
lightning = { version = "0.0.125", default-features = false, features = ["grind_signatures"] } | ||
log = "0.4.14" | ||
|
@@ -34,8 +34,8 @@ bitcoin-test-utils = {path = "../bitcoin-test-utils"} | |
bitcoincore-rpc = {version = "0.19"} | ||
bitcoincore-rpc-json = {version = "0.19"} | ||
criterion = "0.4.0" | ||
dlc-manager = { path = ".", default-features = false, features = ["use-serde"] } | ||
dlc-messages = { path = "../dlc-messages", default-features = false, features = ["serde"] } | ||
ddk-manager = { path = ".", default-features = false, features = ["use-serde"] } | ||
ddk-messages = { path = "../ddk-messages", default-features = false, features = ["serde"] } | ||
electrs-blockchain-provider = {path = "../electrs-blockchain-provider"} | ||
env_logger = "0.9.1" | ||
mocks = {path = "../mocks"} | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
dlc-manager/src/channel/accepted_channel.rs → ddk-manager/src/channel/accepted_channel.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.