Skip to content

Commit b3e933a

Browse files
committed
fix: un-hard code path (clarinet deploy)
1 parent 6ef7d63 commit b3e933a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-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")

0 commit comments

Comments
 (0)