File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,7 @@ contract PythStorage {
30
30
// with a lower or equal sequence number will be discarded. This prevents double-execution,
31
31
// and also makes sure that messages are executed in the right order.
32
32
uint64 lastExecutedGovernanceSequence;
33
- // Mapping of cached price information
34
- // priceId => PriceInfo
33
+ // After a backward-incompatible change in PriceFeed this mapping got deprecated.
35
34
mapping (bytes32 => PythDeprecatedStructs.DeprecatedPriceInfoV2) _deprecatedLatestPriceInfoV2;
36
35
// Index of the governance data source, increased each time the governance data source
37
36
// changes.
Original file line number Diff line number Diff line change 1
1
[profile .default ]
2
2
solc_version = ' 0.8.4'
3
3
optimizer = true
4
- optimizer_runs = 1000
4
+ optimizer_runs = 10000
5
5
src = ' contracts'
6
6
# We put the tests into the forge-test directory (instead of test) so that
7
7
# truffle doesn't try to build them
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ module.exports = {
230
230
settings : {
231
231
optimizer : {
232
232
enabled : true ,
233
- runs : 1000 ,
233
+ runs : 10000 ,
234
234
} ,
235
235
} ,
236
236
} ,
You can’t perform that action at this time.
0 commit comments