Skip to content

Commit 43426d2

Browse files
authored
Merge pull request #4341 from anoma/murisi/test-vectors-with-chain-ids
Print the transaction's chain ID in expert mode. (re-opened from #4332 after revert)
2 parents cd3180c + 0b5b695 commit 43426d2

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- Make the test vector generator print the chain ID of transactions in expert
2+
mode ([\#4282](https://github.com/anoma/namada/issues/4282))

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ env:
3535
AWS_REGION: us-west-2
3636
NIGHTLY: nightly-2024-09-08
3737
NAMADA_MASP_PARAMS_DIR: /masp/.masp-params
38-
LEDGER_APP_VERSION: "2.0.4"
38+
LEDGER_APP_VERSION: "3.0.1"
3939
ROLE: arn:aws:iam::375643557360:role/github-runners-ci-shared
4040

4141
jobs:

crates/sdk/src/signing.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2182,6 +2182,7 @@ pub async fn to_ledger_vector(
21822182
.map_err(|e| Error::Other(format!("{}", e)))?,
21832183
);
21842184
tv.output_expert.extend(vec![
2185+
format!("Chain ID : {}", tx.header.chain_id),
21852186
format!(
21862187
"Timestamp : {}",
21872188
format_timestamp(tx.header.timestamp)

0 commit comments

Comments
 (0)