@@ -37,8 +37,8 @@ use pos_accounting::{DelegationData, InMemoryPoSAccounting, PoSAccountingDB, Poo
3737use randomness:: { CryptoRng , Rng } ;
3838use rstest:: rstest;
3939use test_utils:: {
40- nft_utils:: random_nft_issuance,
4140 random:: { make_seedable_rng, Seed } ,
41+ token_utils:: random_nft_issuance,
4242} ;
4343
4444use crate :: { ConstrainedValueAccumulator , Error } ;
@@ -755,7 +755,7 @@ fn calculate_fee_for_token_issuance(#[case] seed: Seed) {
755755 ) ) ] ;
756756
757757 let outputs = vec ! [ TxOutput :: IssueFungibleToken ( Box :: new( TokenIssuance :: V1 (
758- test_utils:: nft_utils :: random_token_issuance_v1(
758+ test_utils:: token_utils :: random_token_issuance_v1(
759759 & chain_config,
760760 Destination :: AnyoneCanSpend ,
761761 & mut rng,
@@ -805,7 +805,7 @@ fn calculate_token_supply_change_fee(#[case] seed: Seed) {
805805 let orders_db = OrdersAccountingDB :: new ( & orders_store) ;
806806
807807 let token_data = tokens_accounting:: TokenData :: FungibleToken (
808- TokenIssuance :: V1 ( test_utils:: nft_utils :: random_token_issuance_v1 (
808+ TokenIssuance :: V1 ( test_utils:: token_utils :: random_token_issuance_v1 (
809809 & chain_config,
810810 Destination :: AnyoneCanSpend ,
811811 & mut rng,
@@ -978,7 +978,7 @@ fn calculate_token_fee_freeze(#[case] seed: Seed) {
978978 let orders_db = OrdersAccountingDB :: new ( & orders_store) ;
979979
980980 let token_data = tokens_accounting:: TokenData :: FungibleToken (
981- TokenIssuance :: V1 ( test_utils:: nft_utils :: random_token_issuance_v1 (
981+ TokenIssuance :: V1 ( test_utils:: token_utils :: random_token_issuance_v1 (
982982 & chain_config,
983983 Destination :: AnyoneCanSpend ,
984984 & mut rng,
@@ -1110,7 +1110,7 @@ fn calculate_token_fee_change_authority(#[case] seed: Seed) {
11101110 let orders_db = OrdersAccountingDB :: new ( & orders_store) ;
11111111
11121112 let token_data = tokens_accounting:: TokenData :: FungibleToken (
1113- TokenIssuance :: V1 ( test_utils:: nft_utils :: random_token_issuance_v1 (
1113+ TokenIssuance :: V1 ( test_utils:: token_utils :: random_token_issuance_v1 (
11141114 & chain_config,
11151115 Destination :: AnyoneCanSpend ,
11161116 & mut rng,
@@ -1305,7 +1305,7 @@ fn calculate_token_fee_change_metadata_uri(#[case] seed: Seed) {
13051305 let orders_db = OrdersAccountingDB :: new ( & orders_store) ;
13061306
13071307 let token_data = tokens_accounting:: TokenData :: FungibleToken (
1308- TokenIssuance :: V1 ( test_utils:: nft_utils :: random_token_issuance_v1 (
1308+ TokenIssuance :: V1 ( test_utils:: token_utils :: random_token_issuance_v1 (
13091309 & chain_config,
13101310 Destination :: AnyoneCanSpend ,
13111311 & mut rng,
0 commit comments