Fix merge errors

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2024-03-12 11:27:30 +01:00
parent 3338edae88
commit 928ac343f8
4 changed files with 0 additions and 55 deletions

View File

@ -4,36 +4,6 @@ Update this for each program release and mainnet deployment.
## not on mainnet ## not on mainnet
<<<<<<< HEAD
### v0.22.0, 2024-2-
- Perp: Allow reusing your own perp order slots immediately (#817)
Previously users who placed a lot of perp orders and used time-in-force needed
to wait for out-event cranking if their perp order before reusing an order
slot. Now perp order slots can be reused even when the out-event is still on
the event queue.
- Introduce fallback oracles (#790, #813)
Fallback oracles can be used when the primary oracle is stale or not confident.
These oracles need to configured by the DAO to be usable by clients.
Fallback oracles may be based on Orca in addition to the other supported types.
- Add serum3_cancel_by_client_order_id instruction (#798)
Can now cancel by client order id and not just the order id.
- Delegates can now withdraw small token amounts to the owner's ata (#820)
- Custom allocator to allow larger heap use if needed (#801)
- Optimize compute use in token_deposit instruction (#786)
- Disable support for v1 and v2 mango accounts (#783)
- Cleanups, logging and tests (#819, #799, #818, #823, #834, #828, #833)
## mainnet
=======
### v0.23.0, 2024-3- ### v0.23.0, 2024-3-
- Allow disabling asset liquidations for tokens (#867) - Allow disabling asset liquidations for tokens (#867)
@ -87,7 +57,6 @@ Deployment: Mar 3, 2024 at 23:52:08 Central European Standard Time, https://expl
- Disable support for v1 and v2 mango accounts (#783) - Disable support for v1 and v2 mango accounts (#783)
- Cleanups, logging and tests (#819, #799, #818, #823, #834, #828, #833) - Cleanups, logging and tests (#819, #799, #818, #823, #834, #828, #833)
>>>>>>> main
### v0.21.3, 2024-2-9 ### v0.21.3, 2024-2-9
Deployment: Feb 9, 2024 at 11:21:58 Central European Standard Time, https://explorer.solana.com/tx/44f2wcLyLiic1aycdaPTdfwXJBMeGeuA984kvCByg4L5iGprH6xW3D35gd3bvZ6kU3SipEtoY3kDuexJghbxL89T Deployment: Feb 9, 2024 at 11:21:58 Central European Standard Time, https://explorer.solana.com/tx/44f2wcLyLiic1aycdaPTdfwXJBMeGeuA984kvCByg4L5iGprH6xW3D35gd3bvZ6kU3SipEtoY3kDuexJghbxL89T

4
Cargo.lock generated
View File

@ -3367,11 +3367,7 @@ dependencies = [
[[package]] [[package]]
name = "mango-v4" name = "mango-v4"
<<<<<<< HEAD
version = "0.22.0"
=======
version = "0.23.0" version = "0.23.0"
>>>>>>> main
dependencies = [ dependencies = [
"anchor-lang", "anchor-lang",
"anchor-spl", "anchor-spl",

View File

@ -1,9 +1,5 @@
{ {
<<<<<<< HEAD
"version": "0.22.0",
=======
"version": "0.23.0", "version": "0.23.0",
>>>>>>> main
"name": "mango_v4", "name": "mango_v4",
"instructions": [ "instructions": [
{ {
@ -641,8 +637,6 @@
{ {
"name": "platformLiquidationFee", "name": "platformLiquidationFee",
"type": "f32" "type": "f32"
<<<<<<< HEAD
=======
}, },
{ {
"name": "disableAssetLiquidation", "name": "disableAssetLiquidation",
@ -651,7 +645,6 @@
{ {
"name": "collateralFeePerDay", "name": "collateralFeePerDay",
"type": "f32" "type": "f32"
>>>>>>> main
} }
] ]
}, },
@ -1062,8 +1055,6 @@
"type": { "type": {
"option": "f32" "option": "f32"
} }
<<<<<<< HEAD
=======
}, },
{ {
"name": "disableAssetLiquidationOpt", "name": "disableAssetLiquidationOpt",
@ -1082,7 +1073,6 @@
"type": { "type": {
"option": "bool" "option": "bool"
} }
>>>>>>> main
} }
] ]
}, },
@ -7644,8 +7634,6 @@
} }
}, },
{ {
<<<<<<< HEAD
=======
"name": "collectedCollateralFees", "name": "collectedCollateralFees",
"docs": [ "docs": [
"Collateral fees that have been collected (in native tokens)", "Collateral fees that have been collected (in native tokens)",
@ -7664,16 +7652,11 @@
"type": "f32" "type": "f32"
}, },
{ {
>>>>>>> main
"name": "reserved", "name": "reserved",
"type": { "type": {
"array": [ "array": [
"u8", "u8",
<<<<<<< HEAD
1920
=======
1900 1900
>>>>>>> main
] ]
} }
} }

View File

@ -485,8 +485,6 @@ pub fn token_edit(
platform_liquidation_fee platform_liquidation_fee
); );
bank.platform_liquidation_fee = I80F48::from_num(platform_liquidation_fee); bank.platform_liquidation_fee = I80F48::from_num(platform_liquidation_fee);
<<<<<<< HEAD
=======
if platform_liquidation_fee != 0.0 { if platform_liquidation_fee != 0.0 {
require_group_admin = true; require_group_admin = true;
} }
@ -521,7 +519,6 @@ pub fn token_edit(
force_withdraw force_withdraw
); );
bank.force_withdraw = u8::from(force_withdraw); bank.force_withdraw = u8::from(force_withdraw);
>>>>>>> main
require_group_admin = true; require_group_admin = true;
} }
} }