Skip to content

Commit

Permalink
Maker & Taker data should persist when new, because there's already d…
Browse files Browse the repository at this point in the history
…ata then
  • Loading branch information
nobu-maeda committed Dec 22, 2023
1 parent 68da7c0 commit cc70135
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/maker/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ impl MakerActorData {
store,
task_handle,
};
data.queue_persistance();

Ok((trade_uuid, data))
}

Expand Down
1 change: 1 addition & 0 deletions src/taker/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ impl TakerActorData {
store,
task_handle,
};
data.queue_persistance();

Ok((trade_uuid, data))
}
Expand Down

0 comments on commit cc70135

Please sign in to comment.