Browse Source

Remove unnecessary default arguments

This is legacy, we don't want any defaults here.
feature/reconnect-button
Thomas Eizinger 3 years ago
parent
commit
6348374790
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 7
      daemon/src/maker_cfd.rs

7
daemon/src/maker_cfd.rs

@ -77,12 +77,7 @@ pub struct FromTaker {
pub msg: wire::TakerToMaker,
}
pub struct Actor<
O = oracle::Actor,
M = monitor::Actor,
T = maker_inc_connections::Actor,
W = wallet::Actor,
> {
pub struct Actor<O, M, T, W> {
db: sqlx::SqlitePool,
wallet: Address<W>,
settlement_interval: Duration,

Loading…
Cancel
Save