paritytech / extended-parachain-template

Node template to build parachains with all the required pallets. Slightly opinionated based on what majority of parachain teams are using.
The Unlicense
27 stars 19 forks source link

Use ParityDB Weights over RocksDB #109

Open shawntabrizi opened 3 months ago

shawntabrizi commented 3 months ago

Seems like the weights in the runtime still use RocksDb.

I thought we migrated all default behavior to ParityDb.

/// The weight of database operations that the runtime can invoke.
type DbWeight = RocksDbWeight;

So this line should change in both mainnet and devnet runtime.