Skip to content

Commit

Permalink
ci: remove pull request branch filter
Browse files Browse the repository at this point in the history
  • Loading branch information
lonerapier committed Mar 4, 2025
1 parent 954a184 commit fff5c66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/web-prover.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: ["main"]
pull_request:
branches: ["*"]
branches: ["**"]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion client/src/origo_wasm32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ async fn handle_tee_mode(
let mut framed_reunited_socket =
Framed::new(reunited_socket.compat(), LengthDelimitedCodec::new());

let manifest = config.proving.manifest.unwrap();
let manifest = config.manifest;
let manifest_bytes: Vec<u8> = (&manifest).try_into().unwrap();
framed_reunited_socket.send(Bytes::from(manifest_bytes)).await?;

Expand Down

0 comments on commit fff5c66

Please sign in to comment.