xmr-btc-swap/swap/src/asb/recovery.rs
Daniel Karzel c0070f8fa7
Move files from protocol to appropriate module
Some network and application specific code does not belong in the protocol module and was moved.
Eventloop, recovery and the outside behaviour were moved to the respective application module because they are application specific.

The `swap_setup` was moved into the network module because upon change both sides will have to be changed and should thus stay close together.
2021-06-28 10:04:08 +10:00

6 lines
86 B
Rust

pub mod cancel;
pub mod punish;
pub mod redeem;
pub mod refund;
pub mod safely_abort;