mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-23 16:13:20 +00:00
Remove unused code
This commit is contained in:
@ -338,7 +338,6 @@ paths:
|
|||||||
- `total_secs_exp`
|
- `total_secs_exp`
|
||||||
- `penalty`
|
- `penalty`
|
||||||
- `is_maker`
|
- `is_maker`
|
||||||
- `is_pretaker`
|
|
||||||
- `is_taker`
|
- `is_taker`
|
||||||
- `is_participant`
|
- `is_participant`
|
||||||
- `maker_status`
|
- `maker_status`
|
||||||
@ -1387,9 +1386,6 @@ components:
|
|||||||
is_maker:
|
is_maker:
|
||||||
type: boolean
|
type: boolean
|
||||||
description: Whether you are the maker or not
|
description: Whether you are the maker or not
|
||||||
is_pretaker:
|
|
||||||
type: boolean
|
|
||||||
description: Whether you are a pre-taker or not
|
|
||||||
is_taker:
|
is_taker:
|
||||||
type: boolean
|
type: boolean
|
||||||
description: Whether you are the taker or not
|
description: Whether you are the taker or not
|
||||||
|
@ -75,7 +75,6 @@ class Order {
|
|||||||
penalty: Date | undefined = undefined;
|
penalty: Date | undefined = undefined;
|
||||||
is_maker: boolean = false;
|
is_maker: boolean = false;
|
||||||
is_taker: boolean = false;
|
is_taker: boolean = false;
|
||||||
is_pretaker: boolean = false;
|
|
||||||
is_participant: boolean = false;
|
is_participant: boolean = false;
|
||||||
maker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active';
|
maker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active';
|
||||||
taker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active';
|
taker_status: 'Active' | 'Seen recently' | 'Inactive' = 'Active';
|
||||||
|
Reference in New Issue
Block a user