We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19491b2 commit 3f189f9Copy full SHA for 3f189f9
substrate-node/runtime/src/migrations.rs
@@ -119,8 +119,10 @@ impl frame_support::traits::OnRuntimeUpgrade for PalletTftPriceStoragePrefixMigr
119
// Reinsert some default values
120
pallet_tft_price::TftPrice::<Runtime>::put(45);
121
pallet_tft_price::AverageTftPrice::<Runtime>::put(45);
122
+ pallet_tft_price::MinTftPrice::<Runtime>::put(20);
123
+ pallet_tft_price::MaxTftPrice::<Runtime>::put(2000);
124
- <Runtime as frame_system::Config>::DbWeight::get().writes(2)
125
+ <Runtime as frame_system::Config>::DbWeight::get().writes(8)
126
}
127
128
0 commit comments