File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -469,7 +469,7 @@ pub fn main() {
469469
470470 let tx_bytes = signed_tx. serialize_to_vec ( ) ;
471471 let client = reqwest:: blocking:: Client :: new ( ) ;
472- let path = format ! ( "{}/v2/transactions" , "http://localhost:20443" ) ;
472+ let path = format ! ( "{}/v2/transactions" , host ) ;
473473 let res = client
474474 . post ( & path)
475475 . header ( "Content-Type" , "application/octet-stream" )
Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ pub async fn do_run_tests(
170170) -> Result < bool , AnyError > {
171171 let mut flags = Flags :: default ( ) ;
172172 flags. unstable = true ;
173+ flags. reload = true ;
173174 let program_state = ProgramState :: build ( flags. clone ( ) ) . await ?;
174175 let permissions = Permissions :: from_options ( & flags. clone ( ) . into ( ) ) ;
175176 let mut project_path = manifest_path. clone ( ) ;
You can’t perform that action at this time.
0 commit comments