Payout flows in backend - fix Tremendous forex cards (#5001)

* wip: payouts flow api

* working

* Finish up flow migration

* vibe-coded frontend changes

* fix typos and vue

* fix: types

---------

Co-authored-by: Calum H. (IMB11) <contact@cal.engineer>
This commit is contained in:
aecsocket
2026-01-14 10:53:35 +00:00
committed by GitHub
parent 50a87ba933
commit d055dc68dc
17 changed files with 1224 additions and 873 deletions

View File

@@ -48,6 +48,10 @@ impl<const DP: u32> DecimalDp<DP> {
}
}
pub const fn new_unchecked(v: Decimal) -> Self {
Self(v)
}
pub fn get(self) -> Decimal {
self.0
}