@@ -421,6 +421,7 @@ impl Config {
421421 pox_sync_sample_secs : node
422422 . pox_sync_sample_secs
423423 . unwrap_or ( default_node_config. pox_sync_sample_secs ) ,
424+ use_test_genesis_chainstate : node. use_test_genesis_chainstate ,
424425 } ;
425426 node_config. set_bootstrap_node ( node. bootstrap_node ) ;
426427 if let Some ( deny_nodes) = node. deny_nodes {
@@ -913,6 +914,7 @@ pub struct NodeConfig {
913914 pub wait_time_for_microblocks : u64 ,
914915 pub prometheus_bind : Option < String > ,
915916 pub pox_sync_sample_secs : u64 ,
917+ pub use_test_genesis_chainstate : Option < bool > ,
916918}
917919
918920impl NodeConfig {
@@ -950,6 +952,7 @@ impl NodeConfig {
950952 wait_time_for_microblocks : 5000 ,
951953 prometheus_bind : None ,
952954 pox_sync_sample_secs : 30 ,
955+ use_test_genesis_chainstate : None ,
953956 }
954957 }
955958
@@ -1081,6 +1084,7 @@ pub struct NodeConfigFile {
10811084 pub wait_time_for_microblocks : Option < u64 > ,
10821085 pub prometheus_bind : Option < String > ,
10831086 pub pox_sync_sample_secs : Option < u64 > ,
1087+ pub use_test_genesis_chainstate : Option < bool > ,
10841088}
10851089
10861090#[ derive( Clone , Deserialize , Default ) ]
0 commit comments