File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
IotaWalletNet.Domain/Common/Models/Nft
IotaWalletNet.Tests/Common/Interfaces Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public class NftIrc27
1010 /// Mime type
1111 /// </summary>
1212 public string Type { get ; set ; }
13- public string NameOfNft { get ; }
13+ public string Name { get ; }
1414 public string Uri { get ; }
1515
1616 public string ? CollectionName { get ; set ; }
@@ -41,7 +41,7 @@ public class NftIrc27
4141 public NftIrc27 ( string mimeType , string nameOfNft , string uri )
4242 {
4343 Type = mimeType ;
44- NameOfNft = nameOfNft ;
44+ Name = nameOfNft ;
4545 Uri = uri ;
4646 }
4747
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class DependencyTestBase : IDisposable
1212 protected const string DEFAULT_FAUCET_URL = @"https://faucet.testnet.shimmer.network" ;
1313 protected const string ANOTHER_WALLET_ADDRESS = "rms1qz8wf6jrchvsfmcnsfhlf6s53x3u85y0j4hvwth9a5ff3xhrxtmvvyc9ae7" ;
1414 protected const int SLEEP_DURATION_SECONDS_TRANSACTION = 15 ;
15- protected const int SLEEP_DURATION_SECONDS_FAUCET = 15 ;
15+ protected const int SLEEP_DURATION_SECONDS_FAUCET = 30 ;
1616 protected const int SLEEP_DURATION_SECONDS_API_RATE_LIMIT = 0 ;
1717 protected List < string > filesCreated ;
1818 public DependencyTestBase ( )
You can’t perform that action at this time.
0 commit comments