File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ impl gasket::framework::Worker<Stage> for Worker {
9191
9292#[ derive( Default , Deserialize ) ]
9393pub struct Config {
94- path : String ,
94+ pub path : String ,
9595}
9696
9797impl Config {
Original file line number Diff line number Diff line change @@ -328,10 +328,10 @@ impl gasket::framework::Worker<Stage> for Worker {
328328
329329#[ derive( Deserialize , Clone ) ]
330330pub struct Config {
331- aggregator : String ,
332- genesis_key : String ,
333- snapshot_download_dir : String ,
334- skip_validation : bool ,
331+ pub aggregator : String ,
332+ pub genesis_key : String ,
333+ pub snapshot_download_dir : String ,
334+ pub skip_validation : bool ,
335335}
336336
337337impl Config {
Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ impl gasket::framework::Worker<Stage> for Worker {
120120
121121#[ derive( Deserialize ) ]
122122pub struct Config {
123- bucket : String ,
124- items_per_batch : u32 ,
123+ pub bucket : String ,
124+ pub items_per_batch : u32 ,
125125}
126126
127127impl Config {
Original file line number Diff line number Diff line change @@ -165,10 +165,10 @@ pub struct Stage {
165165
166166#[ derive( Deserialize ) ]
167167pub struct Config {
168- url : String ,
169- metadata : HashMap < String , String > ,
168+ pub url : String ,
169+ pub metadata : HashMap < String , String > ,
170170 #[ serde( default ) ]
171- use_parsed_blocks : bool ,
171+ pub use_parsed_blocks : bool ,
172172}
173173
174174impl Config {
You can’t perform that action at this time.
0 commit comments