@@ -50,7 +50,7 @@ pub struct MarketConf {
5050 /// Optional additional gas to add to the transaction for lockinRequest, good
5151 /// for increasing the priority if competing with multiple provers during the
5252 /// same block
53- pub lockin_priority_gas : Option < u128 > ,
53+ pub lockin_priority_gas : Option < u64 > ,
5454 /// Max input / image file size
5555 pub max_file_size : usize ,
5656}
@@ -325,6 +325,7 @@ max_stake = "0.1"
325325skip_preflight_ids = ["0x0000000000000000000000000000000000000000000000000000000000000001"]
326326max_file_size = 50_000_000
327327allow_client_addresses = ["0x0000000000000000000000000000000000000000"]
328+ lockin_priority_gas = 100
328329
329330[prover]
330331status_poll_ms = 1000
@@ -416,6 +417,7 @@ error = ?"#;
416417 assert_eq ! ( config. market. min_deadline, 150 ) ;
417418 assert_eq ! ( config. market. lookback_blocks, 100 ) ;
418419 assert_eq ! ( config. market. allow_client_addresses, Some ( vec![ Address :: ZERO ] ) ) ;
420+ assert_eq ! ( config. market. lockin_priority_gas, Some ( 100 ) ) ;
419421 assert_eq ! ( config. prover. status_poll_ms, 1000 ) ;
420422 assert ! ( config. prover. bonsai_r0_zkvm_ver. is_none( ) ) ;
421423 assert_eq ! ( config. batcher. txn_timeout, Some ( 45 ) ) ;
0 commit comments