Skip to content

Commit

Permalink
Merge pull request #364 from Concordium/fix-missing-owner
Browse files Browse the repository at this point in the history
Fix missing 'owner' issue
  • Loading branch information
limemloh authored Jan 8, 2025
2 parents 02bb1b4 + cd17f90 commit 7843971
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend-rust/src/indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2614,7 +2614,7 @@ async fn process_cis2_event(
cis2::Event::Mint {
token_id,
amount,
..
owner,
} => {
let token_address = TokenAddress::new(
ContractAddress::new(contract_index as u64, contract_sub_index as u64),
Expand Down Expand Up @@ -2694,7 +2694,7 @@ async fn process_cis2_event(
cis2::Event::Burn {
token_id,
amount,
..
owner,
} => {
let token_address = TokenAddress::new(
ContractAddress::new(contract_index as u64, contract_sub_index as u64),
Expand Down

0 comments on commit 7843971

Please sign in to comment.