mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-12-24 23:19:34 -05:00
Merge #1173
1173: build(deps): bump comfy-table to 6.1.1 r=delta1 a=delta1 Supersedes #1172 because it requires Rust 1.62 Co-authored-by: Byron Hambly <bhambly@blockstream.com>
This commit is contained in:
commit
14c1635b72
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -587,9 +587,9 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "comfy-table"
|
name = "comfy-table"
|
||||||
version = "6.1.0"
|
version = "6.1.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "85914173c2f558d61613bfbbf1911f14e630895087a7ed2fafc0f5319e1536e7"
|
checksum = "7b3d16bb3da60be2f7c7acfc438f2ae6f3496897ce68c291d0509bb67b4e248e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossterm",
|
"crossterm",
|
||||||
"strum",
|
"strum",
|
||||||
|
@ -50,7 +50,7 @@ Please have a look at the [contribution guidelines](./CONTRIBUTING.md).
|
|||||||
## Rust Version Support
|
## Rust Version Support
|
||||||
|
|
||||||
Please note that only the latest stable Rust toolchain is supported.
|
Please note that only the latest stable Rust toolchain is supported.
|
||||||
All stable toolchains since 1.60 _should_ work.
|
All stable toolchains since 1.62 _should_ work.
|
||||||
|
|
||||||
## Contact
|
## Contact
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
[toolchain]
|
[toolchain]
|
||||||
channel = "1.60"
|
channel = "1.62"
|
||||||
components = ["clippy"]
|
components = ["clippy"]
|
||||||
targets = ["armv7-unknown-linux-gnueabihf"]
|
targets = ["armv7-unknown-linux-gnueabihf"]
|
||||||
|
@ -176,7 +176,7 @@ where
|
|||||||
let _ = responder.respond(wallet_snapshot);
|
let _ = responder.respond(wallet_snapshot);
|
||||||
}
|
}
|
||||||
SwarmEvent::Behaviour(OutEvent::SwapSetupCompleted{peer_id, swap_id, state3}) => {
|
SwarmEvent::Behaviour(OutEvent::SwapSetupCompleted{peer_id, swap_id, state3}) => {
|
||||||
let _ = self.handle_execution_setup_done(peer_id, swap_id, state3).await;
|
self.handle_execution_setup_done(peer_id, swap_id, state3).await;
|
||||||
}
|
}
|
||||||
SwarmEvent::Behaviour(OutEvent::SwapDeclined { peer, error }) => {
|
SwarmEvent::Behaviour(OutEvent::SwapDeclined { peer, error }) => {
|
||||||
tracing::warn!(%peer, "Ignoring spot price request: {}", error);
|
tracing::warn!(%peer, "Ignoring spot price request: {}", error);
|
||||||
|
@ -176,7 +176,7 @@ where
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
result = tx_lock_status.wait_until_confirmed_with(state3.cancel_timelock) => {
|
result = tx_lock_status.wait_until_confirmed_with(state3.cancel_timelock) => {
|
||||||
let _ = result?;
|
result?;
|
||||||
AliceState::CancelTimelockExpired {
|
AliceState::CancelTimelockExpired {
|
||||||
monero_wallet_restore_blockheight,
|
monero_wallet_restore_blockheight,
|
||||||
transfer_proof,
|
transfer_proof,
|
||||||
@ -196,7 +196,7 @@ where
|
|||||||
biased; // make sure the cancel timelock expiry future is polled first
|
biased; // make sure the cancel timelock expiry future is polled first
|
||||||
|
|
||||||
result = tx_lock_status.wait_until_confirmed_with(state3.cancel_timelock) => {
|
result = tx_lock_status.wait_until_confirmed_with(state3.cancel_timelock) => {
|
||||||
let _ = result?;
|
result?;
|
||||||
AliceState::CancelTimelockExpired {
|
AliceState::CancelTimelockExpired {
|
||||||
monero_wallet_restore_blockheight,
|
monero_wallet_restore_blockheight,
|
||||||
transfer_proof,
|
transfer_proof,
|
||||||
@ -326,7 +326,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
result = tx_cancel_status.wait_until_confirmed_with(state3.punish_timelock) => {
|
result = tx_cancel_status.wait_until_confirmed_with(state3.punish_timelock) => {
|
||||||
let _ = result?;
|
result?;
|
||||||
|
|
||||||
AliceState::BtcPunishable {
|
AliceState::BtcPunishable {
|
||||||
monero_wallet_restore_blockheight,
|
monero_wallet_restore_blockheight,
|
||||||
|
@ -137,7 +137,7 @@ async fn next_state(
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
result = cancel_timelock_expires => {
|
result = cancel_timelock_expires => {
|
||||||
let _ = result?;
|
result?;
|
||||||
tracing::info!("Alice took too long to lock Monero, cancelling the swap");
|
tracing::info!("Alice took too long to lock Monero, cancelling the swap");
|
||||||
|
|
||||||
let state4 = state3.cancel();
|
let state4 = state3.cancel();
|
||||||
@ -174,7 +174,7 @@ async fn next_state(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
result = tx_lock_status.wait_until_confirmed_with(state.cancel_timelock) => {
|
result = tx_lock_status.wait_until_confirmed_with(state.cancel_timelock) => {
|
||||||
let _ = result?;
|
result?;
|
||||||
BobState::CancelTimelockExpired(state.cancel())
|
BobState::CancelTimelockExpired(state.cancel())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -198,7 +198,7 @@ async fn next_state(
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
result = tx_lock_status.wait_until_confirmed_with(state.cancel_timelock) => {
|
result = tx_lock_status.wait_until_confirmed_with(state.cancel_timelock) => {
|
||||||
let _ = result?;
|
result?;
|
||||||
BobState::CancelTimelockExpired(state.cancel())
|
BobState::CancelTimelockExpired(state.cancel())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -215,7 +215,7 @@ async fn next_state(
|
|||||||
BobState::BtcRedeemed(state5?)
|
BobState::BtcRedeemed(state5?)
|
||||||
},
|
},
|
||||||
result = tx_lock_status.wait_until_confirmed_with(state.cancel_timelock) => {
|
result = tx_lock_status.wait_until_confirmed_with(state.cancel_timelock) => {
|
||||||
let _ = result?;
|
result?;
|
||||||
BobState::CancelTimelockExpired(state.cancel())
|
BobState::CancelTimelockExpired(state.cancel())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user