Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/polyhedron-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
sudo apt-get install -y clang netcat wget curl libssl-dev llvm libclang-dev libudev-dev make protobuf-compiler pkg-config libsnappy-dev librocksdb-dev rocksdb-tools
echo "LIBCLANG_PATH=/usr/lib/llvm-14/lib" >> $GITHUB_ENV

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 10

- name: Set up Node
uses: actions/setup-node@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
with:
toolchain: stable

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 10

- name: Set up Node
uses: actions/setup-node@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tesseract-consensus-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
with:
toolchain: stable

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 10

- name: Set up Node
uses: actions/setup-node@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tesseract-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
with:
toolchain: stable

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 10

- name: Set up Node
uses: actions/setup-node@v3
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,9 @@ jobs:
with:
node-version: "18"

- name: Install pnpm
uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 10
run_install: false

- name: Get pnpm store directory
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tesseract/consensus/relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tesseract-consensus"
version = "1.6.1"
version = "1.6.3"
edition = "2021"

[lib]
Expand Down
6 changes: 2 additions & 4 deletions tesseract/messaging/evm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,7 @@ impl EvmClient {
let gas = call.estimate_gas().await?;
let pending = call.gas(gas).send().await?;
let tx_hash = *pending.tx_hash();
wait_for_transaction_receipt(H256::from_slice(tx_hash.as_slice()), self.client.clone())
.await?;
wait_for_transaction_receipt(H256::from_slice(tx_hash.as_slice()), self).await?;

Ok(())
}
Expand All @@ -394,8 +393,7 @@ impl EvmClient {
let gas = call.estimate_gas().await?;
let pending = call.gas(gas).send().await?;
let tx_hash = *pending.tx_hash();
wait_for_transaction_receipt(H256::from_slice(tx_hash.as_slice()), self.client.clone())
.await?;
wait_for_transaction_receipt(H256::from_slice(tx_hash.as_slice()), self).await?;

Ok(())
}
Expand Down
2 changes: 1 addition & 1 deletion tesseract/messaging/evm/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ impl IsmpProvider for EvmClient {
},
};

let (tx_requests, _) = generate_contract_calls(self, msg.clone(), true).await?;
let (tx_requests, _) = generate_contract_calls(self, &msg, true).await?;

// Setup debug trace call options with the call tracer
let call_config = CallConfig { only_top_call: Some(false), with_log: Some(true) };
Expand Down
Loading
Loading