Remove unnecessary pub qualifiers

This commit is contained in:
Franck Royer 2021-01-19 15:05:13 +11:00
parent b21dc03ed0
commit 652bfa14a9
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -62,8 +62,8 @@ pub struct SwapFactory {
listen_address: Multiaddr,
pub bitcoin_wallet: Arc<bitcoin::Wallet>,
pub monero_wallet: Arc<monero::Wallet>,
bitcoin_wallet: Arc<bitcoin::Wallet>,
monero_wallet: Arc<monero::Wallet>,
}
impl SwapFactory {