From cd17f90f06681c2de514cc79bbea1d41676f1afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Holm=20Gj=C3=B8rup?= Date: Wed, 8 Jan 2025 15:44:21 +0100 Subject: [PATCH] Fix missing 'owner' issue --- backend-rust/src/indexer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend-rust/src/indexer.rs b/backend-rust/src/indexer.rs index 00b1be63..66251f01 100644 --- a/backend-rust/src/indexer.rs +++ b/backend-rust/src/indexer.rs @@ -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), @@ -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),