@@ -369,10 +369,10 @@ impl pallet_multisig::Config for Runtime {
369
369
}
370
370
371
371
#[ cfg( feature = "runtime-benchmarks" ) ]
372
- pub struct BenchmarkHelper < SC , ACC > ( sp_std:: marker:: PhantomData < ( SC , ACC ) > ) ;
372
+ pub struct DAppStakingBenchmarkHelper < SC , ACC > ( sp_std:: marker:: PhantomData < ( SC , ACC ) > ) ;
373
373
#[ cfg( feature = "runtime-benchmarks" ) ]
374
374
impl pallet_dapp_staking_v3:: BenchmarkHelper < SmartContract < AccountId > , AccountId >
375
- for BenchmarkHelper < SmartContract < AccountId > , AccountId >
375
+ for DAppStakingBenchmarkHelper < SmartContract < AccountId > , AccountId >
376
376
{
377
377
fn get_smart_contract ( id : u32 ) -> SmartContract < AccountId > {
378
378
let id_bytes = id. to_le_bytes ( ) ;
@@ -388,15 +388,6 @@ impl pallet_dapp_staking_v3::BenchmarkHelper<SmartContract<AccountId>, AccountId
388
388
. expect ( "Must succeed in test/benchmark environment." ) ;
389
389
}
390
390
}
391
- #[ cfg( feature = "runtime-benchmarks" ) ]
392
- impl < SC , ACC > orml_oracle:: BenchmarkHelper < CurrencyId , Price , ConstU32 < 2 > >
393
- for BenchmarkHelper < SC , ACC >
394
- {
395
- fn get_currency_id_value_pairs ( ) -> sp_runtime:: BoundedVec < ( CurrencyId , Price ) , ConstU32 < 2 > > {
396
- sp_runtime:: BoundedVec :: try_from ( vec ! [ ( CurrencyId :: ASTR , Price :: from_rational( 15 , 100 ) ) ] )
397
- . expect ( "out of bounds" )
398
- }
399
- }
400
391
401
392
pub struct AccountCheck ;
402
393
impl DappStakingAccountCheck < AccountId > for AccountCheck {
@@ -446,7 +437,7 @@ impl pallet_dapp_staking_v3::Config for Runtime {
446
437
type RankingEnabled = ConstBool < true > ;
447
438
type WeightInfo = weights:: pallet_dapp_staking_v3:: SubstrateWeight < Runtime > ;
448
439
#[ cfg( feature = "runtime-benchmarks" ) ]
449
- type BenchmarkHelper = BenchmarkHelper < SmartContract < AccountId > , AccountId > ;
440
+ type BenchmarkHelper = DAppStakingBenchmarkHelper < SmartContract < AccountId > , AccountId > ;
450
441
}
451
442
452
443
pub struct InflationPayoutPerBlock ;
@@ -1109,6 +1100,19 @@ impl pallet_price_aggregator::Config for Runtime {
1109
1100
type WeightInfo = pallet_price_aggregator:: weights:: SubstrateWeight < Runtime > ;
1110
1101
}
1111
1102
1103
+ #[ cfg( feature = "runtime-benchmarks" ) ]
1104
+ pub struct OracleBenchmarkHelper ;
1105
+ #[ cfg( feature = "runtime-benchmarks" ) ]
1106
+ impl orml_oracle:: BenchmarkHelper < CurrencyId , Price , ConstU32 < 2 > > for OracleBenchmarkHelper {
1107
+ fn get_currency_id_value_pairs ( ) -> sp_runtime:: BoundedVec < ( CurrencyId , Price ) , ConstU32 < 2 > > {
1108
+ sp_runtime:: BoundedVec :: try_from ( vec ! [
1109
+ ( CurrencyId :: ASTR , Price :: from_rational( 15 , 100 ) ) ,
1110
+ ( CurrencyId :: ASTR , Price :: from_rational( 15 , 100 ) ) ,
1111
+ ] )
1112
+ . expect ( "out of bounds" )
1113
+ }
1114
+ }
1115
+
1112
1116
parameter_types ! {
1113
1117
// Cannot specify `Root` so need to do it like this, unfortunately.
1114
1118
pub RootOperatorAccountId : AccountId = AccountId :: from( [ 0xffu8 ; 32 ] ) ;
@@ -1122,6 +1126,9 @@ impl orml_oracle::Config for Runtime {
1122
1126
type OracleKey = CurrencyId ;
1123
1127
type OracleValue = Price ;
1124
1128
type RootOperatorAccountId = RootOperatorAccountId ;
1129
+ #[ cfg( feature = "runtime-benchmarks" ) ]
1130
+ type Members = OracleMembershipWrapper ;
1131
+ #[ cfg( not( feature = "runtime-benchmarks" ) ) ]
1125
1132
type Members = OracleMembership ;
1126
1133
type MaxHasDispatchedSize = ConstU32 < 8 > ;
1127
1134
type WeightInfo = oracle_benchmarks:: weights:: SubstrateWeight < Runtime > ;
@@ -1130,7 +1137,7 @@ impl orml_oracle::Config for Runtime {
1130
1137
#[ cfg( not( feature = "runtime-benchmarks" ) ) ]
1131
1138
type MaxFeedValues = ConstU32 < 1 > ;
1132
1139
#[ cfg( feature = "runtime-benchmarks" ) ]
1133
- type BenchmarkHelper = BenchmarkHelper < SmartContract < AccountId > , AccountId > ;
1140
+ type BenchmarkHelper = OracleBenchmarkHelper ;
1134
1141
}
1135
1142
1136
1143
impl pallet_membership:: Config < OracleMembershipInst > for Runtime {
@@ -1147,6 +1154,24 @@ impl pallet_membership::Config<OracleMembershipInst> for Runtime {
1147
1154
type WeightInfo = pallet_membership:: weights:: SubstrateWeight < Runtime > ;
1148
1155
}
1149
1156
1157
+ /// OracleMembership wrapper used by benchmarks
1158
+ #[ cfg( feature = "runtime-benchmarks" ) ]
1159
+ pub struct OracleMembershipWrapper ;
1160
+
1161
+ #[ cfg( feature = "runtime-benchmarks" ) ]
1162
+ impl frame_support:: traits:: SortedMembers < AccountId > for OracleMembershipWrapper {
1163
+ fn sorted_members ( ) -> Vec < AccountId > {
1164
+ OracleMembership :: sorted_members ( )
1165
+ }
1166
+
1167
+ fn add ( account : & AccountId ) {
1168
+ frame_support:: assert_ok!( OracleMembership :: add_member(
1169
+ frame_system:: RawOrigin :: Root . into( ) ,
1170
+ account. to_owned( ) . into( )
1171
+ ) ) ;
1172
+ }
1173
+ }
1174
+
1150
1175
construct_runtime ! (
1151
1176
pub struct Runtime
1152
1177
{
0 commit comments