Skip to content

Commit

Permalink
Merge pull request #3905 from anoma/mergify/bp/0.44.0/pr-3860
Browse files Browse the repository at this point in the history
feat: serde rename batch index into masp tx index (backport #3860)
  • Loading branch information
mergify[bot] authored Oct 11, 2024
2 parents fc9021a + 7aaf26f commit dbc052f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fixed the masp indexer client not being able to fetch the notes index from the
`namada-masp-indexer`. ([\#3860](https://github.com/anoma/namada/pull/3860))
2 changes: 1 addition & 1 deletion crates/sdk/src/masp/utilities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -563,8 +563,8 @@ impl MaspClient for IndexerMaspClient {

#[derive(Deserialize)]
struct Note {
// masp_tx_index: u64,
note_position: usize,
#[serde(rename = "masp_tx_index")]
batch_index: u32,
block_index: u32,
block_height: u64,
Expand Down

0 comments on commit dbc052f

Please sign in to comment.