Move protocol parent states into appropriate module

This commit is contained in:
rishflab 2021-01-08 10:52:07 +11:00
parent f64eede5d8
commit dcea54dbf1
13 changed files with 123 additions and 124 deletions

View file

@ -5,7 +5,7 @@ use crate::{
bitcoin::{EncryptedSignature, TxCancel, TxRefund},
monero,
monero::monero_private_key,
protocol::{alice, alice::swap::AliceState},
protocol::{alice, alice::AliceState},
SwapAmounts,
};

View file

@ -2,7 +2,7 @@ use ::bitcoin::hashes::core::fmt::Display;
use serde::{Deserialize, Serialize};
use crate::{
protocol::{bob, bob::swap::BobState},
protocol::{bob, bob::BobState},
SwapAmounts,
};