mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-01-25 14:56:23 -05:00
Update dependency to cross-curve-dleq and ecdsa_fun
This commit is contained in:
parent
e2bf429fb7
commit
5250e16b64
@ -8,9 +8,9 @@ edition = "2018"
|
|||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
bitcoin = { version = "0.23", features = ["rand"] }
|
bitcoin = { version = "0.23", features = ["rand"] }
|
||||||
cross-curve-dleq = { git = "https://github.com/comit-network/cross-curve-dleq", rev = "a3e57a70d332b4ce9600663453b9bd02936d76bf" }
|
cross-curve-dleq = { git = "https://github.com/comit-network/cross-curve-dleq", rev = "49171f5e08473d46f951fb1fc338fe437d974d3c" }
|
||||||
curve25519-dalek = "2"
|
curve25519-dalek = "2"
|
||||||
ecdsa_fun = { version = "0.3.1", features = ["libsecp_compat"] }
|
ecdsa_fun = { git = "https://github.com/LLFourn/secp256kfun", rev = "510d48ef6a2b19805f7f5c70c598e5b03f668e7a", features = ["libsecp_compat"] }
|
||||||
ed25519-dalek = "1.0.0-pre.4" # Cannot be 1 because they depend on curve25519-dalek version 3
|
ed25519-dalek = "1.0.0-pre.4" # Cannot be 1 because they depend on curve25519-dalek version 3
|
||||||
miniscript = "1"
|
miniscript = "1"
|
||||||
monero = "0.9"
|
monero = "0.9"
|
||||||
|
@ -188,7 +188,7 @@ impl State0 {
|
|||||||
|
|
||||||
pub fn receive(self, msg: bob::Message0) -> Result<State1> {
|
pub fn receive(self, msg: bob::Message0) -> Result<State1> {
|
||||||
msg.dleq_proof_s_b.verify(
|
msg.dleq_proof_s_b.verify(
|
||||||
&msg.S_b_bitcoin.clone().into(),
|
msg.S_b_bitcoin.clone().into(),
|
||||||
msg.S_b_monero
|
msg.S_b_monero
|
||||||
.point
|
.point
|
||||||
.decompress()
|
.decompress()
|
||||||
|
@ -160,7 +160,7 @@ impl State0 {
|
|||||||
W: BuildTxLockPsbt,
|
W: BuildTxLockPsbt,
|
||||||
{
|
{
|
||||||
msg.dleq_proof_s_a.verify(
|
msg.dleq_proof_s_a.verify(
|
||||||
&msg.S_a_bitcoin.clone().into(),
|
msg.S_a_bitcoin.clone().into(),
|
||||||
msg.S_a_monero
|
msg.S_a_monero
|
||||||
.point
|
.point
|
||||||
.decompress()
|
.decompress()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user