Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gostkin committed Nov 29, 2023
1 parent fd2d271 commit 57205c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indexer/tasks/src/multiera/multiera_projected_nft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub(crate) struct ProjectedNftInputsQueryOutputResult {
pub output_index: i32,
pub tx_hash: Vec<u8>,
pub operation: i32,
pub address: Vec<u8>,
pub owner_address: Vec<u8>,
pub asset: String,
pub amount: i64,
}
Expand Down Expand Up @@ -155,7 +155,7 @@ async fn handle_projected_nft(
amount: Set(projected_nft.amount),
operation: Set(ProjectedNftOperation::Claim.into()),
plutus_datum: Set(vec![]),
owner_address: Set(projected_nft.address.clone()),
owner_address: Set(projected_nft.owner_address.clone()),
previous_utxo_tx_hash: Set(projected_nft.tx_hash.clone()),
previous_utxo_tx_output_index: Set(Some(projected_nft.output_index as i64)),
..Default::default()
Expand Down

0 comments on commit 57205c8

Please sign in to comment.