Browse Source

Merge #783

783: Remove unnecessary default arguments r=thomaseizinger a=thomaseizinger

This is legacy, we don't want any defaults here.


Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
feature/reconnect-button
bors[bot] 3 years ago
committed by GitHub
parent
commit
438f5b0827
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  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