You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Metrics recorder must be initialized before calling any of the metrics macros, in order
because there are many configurations, it can be quite a hassle to specify each one of them. especially when you only want to specify some of them and want to use the default values for the rest. for example, in the dojo-test-utils:
it'd be nice to have a ConfigBuilder where you can set individual values using the builder pattern. the logic for the katana_node::build() can then be moved to ConfigBuilder::build() method.
The text was updated successfully, but these errors were encountered:
Problem
we have a main config struct that encapsulates bunch of other smaller configs. this config struct is then passed to the
katana_node::build()
method.dojo/crates/katana/node/src/config/mod.rs
Lines 16 to 28 in 884a726
dojo/crates/katana/node/src/lib.rs
Lines 157 to 163 in 884a726
because there are many configurations, it can be quite a hassle to specify each one of them. especially when you only want to specify some of them and want to use the default values for the rest. for example, in the
dojo-test-utils
:dojo/crates/dojo/test-utils/src/sequencer.rs
Lines 114 to 122 in 884a726
it'd be nice to have a
ConfigBuilder
where you can set individual values using the builder pattern. the logic for thekatana_node::build()
can then be moved toConfigBuilder::build()
method.The text was updated successfully, but these errors were encountered: