Skip to content

Commit 4263daf

Browse files
authored
Merge pull request #71 from hirosystems/fix/batch
Fix: batch of one liners
2 parents dfcbc9b + b3e933a commit 4263daf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/frontend/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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")

src/test/deno.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)