Skip to content

Commit

Permalink
fix: Update endpoint URL for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
S0c5 committed May 1, 2024
1 parent cbb260b commit a037923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sube/examples/send_tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let public_hex = public.as_ref();
println!("hex: {}", hex::encode(public_hex));

let response = sube!("wss://kreivo.io/balances/transfer_keep_alive" => {
let response = sube!("ws://127.0.0.1:8000/balances/transfer_keep_alive" => {
signer: async |message: &[u8]| Ok(wallet.sign(message).await.expect("hello").as_bytes()) ,
sender: public.as_ref(),
body: json!({
Expand Down

0 comments on commit a037923

Please sign in to comment.