Skip to content

Commit

Permalink
Fix is_fungible_v2 column
Browse files Browse the repository at this point in the history
  • Loading branch information
rtso committed May 3, 2024
1 parent cc4326e commit 221c398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl FungibleAssetMetadataModel {
supply_aggregator_table_handle_v1: supply_aggregator_table_handle,
supply_aggregator_table_key_v1: supply_aggregator_table_key,
token_standard: TokenStandard::V1.to_string(),
is_token_v2: Some(false),
is_token_v2: None,
supply_v2: None,
maximum_v2: None,
}))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ impl TokenOwnershipV2 {
token_properties_mutated_v1: None,
is_soulbound_v2: Some(is_soulbound),
token_standard: TokenStandard::V2.to_string(),
is_fungible_v2: token_data.is_fungible_v2,
is_fungible_v2: None,
last_transaction_version: token_data.transaction_version,
last_transaction_timestamp: token_data.transaction_timestamp,
non_transferrable_by_owner: Some(is_soulbound),
Expand Down

0 comments on commit 221c398

Please sign in to comment.