Skip to content

Commit 1344103

Browse files
committed
updated nft attribute naming of nameofnft to name
1 parent f02414c commit 1344103

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

csharp/IotaWalletNet/IotaWalletNet.Domain/Common/Models/Nft/NFTIRC27.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

csharp/IotaWalletNet/IotaWalletNet.Tests/Common/Interfaces/DependencyTestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)