1
+ // TODO: code budgets were increased. export them to consts and optimize code to again lower them
2
+
1
3
use bytemuck:: checked:: from_bytes;
2
4
use oracles:: switchboard_on_demand_mainnet;
3
5
@@ -671,7 +673,7 @@ impl SolendProgramTest {
671
673
let res = self
672
674
. process_transaction (
673
675
& [
674
- ComputeBudgetInstruction :: set_compute_unit_limit ( 80_000 ) ,
676
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 100_011 ) ,
675
677
init_reserve (
676
678
solend_program:: id ( ) ,
677
679
liquidity_amount,
@@ -857,7 +859,7 @@ impl Info<LendingMarket> {
857
859
liquidity_amount : u64 ,
858
860
) -> Result < ( ) , BanksClientError > {
859
861
let instructions = [
860
- ComputeBudgetInstruction :: set_compute_unit_limit ( 50_000 ) ,
862
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 100_012 ) ,
861
863
deposit_reserve_liquidity (
862
864
solend_program:: id ( ) ,
863
865
liquidity_amount,
@@ -885,7 +887,7 @@ impl Info<LendingMarket> {
885
887
liquidity_amount : u64 ,
886
888
) -> Result < ( ) , BanksClientError > {
887
889
let instructions = [
888
- ComputeBudgetInstruction :: set_compute_unit_limit ( 50_000 ) ,
890
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 100_013 ) ,
889
891
donate_to_reserve (
890
892
solend_program:: id ( ) ,
891
893
liquidity_amount,
@@ -919,7 +921,7 @@ impl Info<LendingMarket> {
919
921
let oracle = oracle. unwrap_or ( & default_oracle) ;
920
922
921
923
let instructions = [
922
- ComputeBudgetInstruction :: set_compute_unit_limit ( 30_000 ) ,
924
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 30_014 ) ,
923
925
update_reserve_config (
924
926
solend_program:: id ( ) ,
925
927
config,
@@ -946,7 +948,7 @@ impl Info<LendingMarket> {
946
948
liquidity_amount : u64 ,
947
949
) -> Result < ( ) , BanksClientError > {
948
950
let instructions = [
949
- ComputeBudgetInstruction :: set_compute_unit_limit ( 70_000 ) ,
951
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 150_015 ) ,
950
952
deposit_reserve_liquidity_and_obligation_collateral (
951
953
solend_program:: id ( ) ,
952
954
liquidity_amount,
@@ -979,7 +981,7 @@ impl Info<LendingMarket> {
979
981
collateral_amount : u64 ,
980
982
) -> Result < ( ) , BanksClientError > {
981
983
let instructions = [
982
- ComputeBudgetInstruction :: set_compute_unit_limit ( 58_000 ) ,
984
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 150_016 ) ,
983
985
refresh_reserve (
984
986
solend_program:: id ( ) ,
985
987
reserve. pubkey ,
@@ -1013,7 +1015,7 @@ impl Info<LendingMarket> {
1013
1015
user : & User ,
1014
1016
) -> Result < Info < Obligation > , BanksClientError > {
1015
1017
let instructions = [
1016
- ComputeBudgetInstruction :: set_compute_unit_limit ( 10_000 ) ,
1018
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 10_001 ) ,
1017
1019
system_instruction:: create_account (
1018
1020
& test. context . payer . pubkey ( ) ,
1019
1021
& obligation_keypair. pubkey ( ) ,
@@ -1047,7 +1049,7 @@ impl Info<LendingMarket> {
1047
1049
collateral_amount : u64 ,
1048
1050
) -> Result < ( ) , BanksClientError > {
1049
1051
let instructions = [
1050
- ComputeBudgetInstruction :: set_compute_unit_limit ( 38_000 ) ,
1052
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 150_002 ) ,
1051
1053
deposit_obligation_collateral (
1052
1054
solend_program:: id ( ) ,
1053
1055
collateral_amount,
@@ -1073,7 +1075,7 @@ impl Info<LendingMarket> {
1073
1075
) -> Result < ( ) , BanksClientError > {
1074
1076
test. process_transaction (
1075
1077
& [
1076
- ComputeBudgetInstruction :: set_compute_unit_limit ( 2_000_000 ) ,
1078
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 2_000_003 ) ,
1077
1079
refresh_reserve (
1078
1080
solend_program:: id ( ) ,
1079
1081
reserve. pubkey ,
@@ -1172,7 +1174,7 @@ impl Info<LendingMarket> {
1172
1174
Err ( e) => return Err ( e) ,
1173
1175
} ;
1174
1176
1175
- let mut instructions = vec ! [ ComputeBudgetInstruction :: set_compute_unit_limit( 1_000_000 ) ] ;
1177
+ let mut instructions = vec ! [ ComputeBudgetInstruction :: set_compute_unit_limit( 1_000_004 ) ] ;
1176
1178
instructions. push ( refresh_reserve_instructions. last ( ) . unwrap ( ) . clone ( ) ) ;
1177
1179
1178
1180
test. process_transaction ( & instructions, None ) . await
@@ -1194,7 +1196,7 @@ impl Info<LendingMarket> {
1194
1196
. await ;
1195
1197
test. process_transaction ( & refresh_ixs, None ) . await . unwrap ( ) ;
1196
1198
1197
- let mut instructions = vec ! [ ComputeBudgetInstruction :: set_compute_unit_limit( 100_000 ) ] ;
1199
+ let mut instructions = vec ! [ ComputeBudgetInstruction :: set_compute_unit_limit( 140_005 ) ] ;
1198
1200
instructions. push ( borrow_obligation_liquidity (
1199
1201
solend_program:: id ( ) ,
1200
1202
liquidity_amount,
@@ -1228,7 +1230,7 @@ impl Info<LendingMarket> {
1228
1230
liquidity_amount : u64 ,
1229
1231
) -> Result < ( ) , BanksClientError > {
1230
1232
let instructions = [
1231
- ComputeBudgetInstruction :: set_compute_unit_limit ( 35_000 ) ,
1233
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 80_006 ) ,
1232
1234
repay_obligation_liquidity (
1233
1235
solend_program:: id ( ) ,
1234
1236
liquidity_amount,
@@ -1252,7 +1254,7 @@ impl Info<LendingMarket> {
1252
1254
reserve : & Info < Reserve > ,
1253
1255
) -> Result < ( ) , BanksClientError > {
1254
1256
let instructions = [
1255
- ComputeBudgetInstruction :: set_compute_unit_limit ( 50_000 ) ,
1257
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 100_007 ) ,
1256
1258
refresh_reserve (
1257
1259
solend_program:: id ( ) ,
1258
1260
reserve. pubkey ,
@@ -1288,7 +1290,7 @@ impl Info<LendingMarket> {
1288
1290
1289
1291
test. process_transaction (
1290
1292
& [
1291
- ComputeBudgetInstruction :: set_compute_unit_limit ( 110_000 ) ,
1293
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 280_008 ) ,
1292
1294
liquidate_obligation_and_redeem_reserve_collateral (
1293
1295
solend_program:: id ( ) ,
1294
1296
liquidity_amount,
@@ -1365,7 +1367,7 @@ impl Info<LendingMarket> {
1365
1367
1366
1368
test. process_transaction (
1367
1369
& [
1368
- ComputeBudgetInstruction :: set_compute_unit_limit ( 110_000 ) ,
1370
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 250_009 ) ,
1369
1371
withdraw_obligation_collateral_and_redeem_reserve_collateral (
1370
1372
solend_program:: id ( ) ,
1371
1373
collateral_amount,
@@ -1409,7 +1411,7 @@ impl Info<LendingMarket> {
1409
1411
1410
1412
test. process_transaction (
1411
1413
& [
1412
- ComputeBudgetInstruction :: set_compute_unit_limit ( 100_000 ) ,
1414
+ ComputeBudgetInstruction :: set_compute_unit_limit ( 120_010 ) ,
1413
1415
withdraw_obligation_collateral (
1414
1416
solend_program:: id ( ) ,
1415
1417
collateral_amount,
0 commit comments