mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-20 15:40:48 -04:00
Upgrade tokio to 1.0
Upgrade bitcoin harness dependency to latest commit Upgrade backoff to fix failing tests. The previous version of backoff had a broken version of the retry function. Upgraded to a newer comit which fixes this problem. Upgrade hyper to 0.14 as the 0.13 was bringing in tokio 0.2.24 Upgraded bitcoin harness to version that uses tokio 1.0 and reqwest 0.11 Upgrade reqwest to 0.11. Reqwest 0.11 uses tokio 1.0 Upgrade libp2p to 0.34 in preparation for tokio 1.0 upgrade
This commit is contained in:
parent
73f89fefda
commit
77fc5743a2
30 changed files with 699 additions and 674 deletions
|
@ -60,7 +60,7 @@ impl From<&AliceState> for Alice {
|
|||
..
|
||||
} => Alice::Negotiated {
|
||||
state3: state3.as_ref().clone(),
|
||||
bob_peer_id: bob_peer_id.clone(),
|
||||
bob_peer_id: *bob_peer_id,
|
||||
},
|
||||
AliceState::BtcLocked {
|
||||
state3,
|
||||
|
@ -68,7 +68,7 @@ impl From<&AliceState> for Alice {
|
|||
..
|
||||
} => Alice::BtcLocked {
|
||||
state3: state3.as_ref().clone(),
|
||||
bob_peer_id: bob_peer_id.clone(),
|
||||
bob_peer_id: *bob_peer_id,
|
||||
},
|
||||
AliceState::XmrLocked { state3 } => Alice::XmrLocked(state3.as_ref().clone()),
|
||||
AliceState::EncSigLearned {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue