This website requires JavaScript.
Explore
Help
Sign In
Git-Mirrors
/
xmr-btc-swap
Watch
1
Star
0
Fork
0
You've already forked xmr-btc-swap
mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced
2025-01-09 06:37:57 -05:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
00648d2747
xmr-btc-swap
/
swap
/
src
/
asb.rs
7 lines
81 B
Rust
Raw
Normal View
History
Unescape
Escape
Add `nectar` binary
2021-02-10 23:07:01 -05:00
pub
mod
command
;
pub
mod
config
;
Provide stronger isolation of kraken module Instead of leaking the tokio::sync::watch::Receiver type in our return value, we create a newtype that implements the desired interface. This allows us to get rid of the `RateService` structs and instead implement `LatestRate` directly on top of this struct. Given that `LatestRate` is only used within the event_loop module, we move the definition of this type into there.
2021-03-04 21:52:24 -05:00
mod
rate
;
Remove redundant noun from tracing initialiser functions
2021-04-07 23:09:52 -04:00
pub
mod
tracing
;
Introduce dynamic rates
2021-02-16 00:37:44 -05:00
Move `FixedRate` into event_loop module This is where these types are used, they can be defined in there.
2021-04-01 01:48:37 -04:00
pub
use
rate
::
Rate
;
Reference in New Issue
Copy Permalink