Skip to content

Commit 6c0d117

Browse files
authored
Merge pull request #27 from wireless90/25-test-create-new-mnemonic
25 test create new mnemonic
2 parents e48f852 + 4730e8d commit 6c0d117

File tree

14 files changed

+77
-16
lines changed

14 files changed

+77
-16
lines changed

csharp/IotaWalletNet/IotaWalletNet.Application/AccountContext/Commands/GenerateAddresses/GenerateAddressesCommandMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.AccountContext.Commands.GenerateAddresses
44
{
55
public class GenerateAddressesCommandMessage : AccountMessage<GenerateAddressesData>
66
{
7-
private const string METHOD_NAME = "GenerateAddresses";
7+
private const string METHOD_NAME = "generateAddresses";
88
public GenerateAddressesCommandMessage(string username, GenerateAddressesData methodData)
99
: base(username, METHOD_NAME, methodData)
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/AccountContext/Commands/SendAmount/SendAmountCommandMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace IotaWalletNet.Application.AccountContext.Commands.SendAmount
66
public class SendAmountCommandMessage : AccountMessage<AddressesWithAmountAndTransactionOptions>
77
{
88

9-
private const string METHOD_NAME = "SendAmount";
9+
private const string METHOD_NAME = "sendAmount";
1010

1111
public SendAmountCommandMessage(string username, AddressesWithAmountAndTransactionOptions methodData)
1212
: base(username, METHOD_NAME, methodData)

csharp/IotaWalletNet/IotaWalletNet.Application/AccountContext/Commands/SyncAccount/SyncAccountCommandMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.AccountContext.Commands.SyncAccount
44
{
55
public class SyncAccountCommandMessage : AccountMessage<AccountSyncOptions>
66
{
7-
private const string METHOD_NAME = "SyncAccount";
7+
private const string METHOD_NAME = "syncAccount";
88
public SyncAccountCommandMessage(string username, AccountSyncOptions accountSyncOptions)
99
: base(username, METHOD_NAME, accountSyncOptions)
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/AccountContext/Queries/GetBalance/GetBalanceQueryMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.AccountContext.Queries.GetBalance
44
{
55
public class GetBalanceQueryMessage : AccountMessage
66
{
7-
private const string METHOD_NAME = "GetBalance";
7+
private const string METHOD_NAME = "getBalance";
88
public GetBalanceQueryMessage(string username)
99
: base(username, METHOD_NAME)
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/WalletContext/Commands/CreateAccount/CreateAccountCommandMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.WalletContext.Commands.CreateAccount
44
{
55
public class CreateAccountCommandMessage : Message<CreateAccountPayload>
66
{
7-
private const string COMMAND = "CreateAccount";
7+
private const string COMMAND = "createAccount";
88

99
public CreateAccountCommandMessage(string username)
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/WalletContext/Commands/StoreMnemonic/StoreMnemonicCommandMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.WalletContext.Commands.StoreMnemonic
44
{
55
internal class StoreMnemonicCommandMessage : Message<string>
66
{
7-
private const string COMMAND = "StoreMnemonic";
7+
private const string COMMAND = "storeMnemonic";
88

99
public StoreMnemonicCommandMessage(string mnemonic)
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/WalletContext/Commands/VerifyMnemonic/VerifyMnemonicCommandMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.WalletContext.Commands.VerifyMnemonic
44
{
55
public class VerifyMnemonicCommandMessage : Message<string>
66
{
7-
private const string COMMAND = "VerifyMnemonic";
7+
private const string COMMAND = "verifyMnemonic";
88

99
public VerifyMnemonicCommandMessage(string mnemonic)
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/WalletContext/Queries/GetAccount/GetAccountQueryMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.WalletContext.Queries.GetAccount
44
{
55
public class GetAccountQueryMessage : Message<string>
66
{
7-
private const string COMMAND = "GetAccount";
7+
private const string COMMAND = "getAccount";
88

99
public GetAccountQueryMessage(string username)
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/WalletContext/Queries/GetAccounts/GetAccountsQueryMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.WalletContext.Queries.GetAccounts
44
{
55
public class GetAccountsQueryMessage : Message<string>
66
{
7-
public const string COMMAND = "GetAccounts";
7+
public const string COMMAND = "getAccounts";
88

99
public GetAccountsQueryMessage()
1010
{

csharp/IotaWalletNet/IotaWalletNet.Application/WalletContext/Queries/GetNewMnemonic/GetNewMnemonicQueryMessage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace IotaWalletNet.Application.WalletContext.Queries.GetNewMnemonic
44
{
55
internal class GetNewMnemonicQueryMessage : Message<string>
66
{
7-
private const string COMMAND = "GenerateMnemonic";
7+
private const string COMMAND = "generateMnemonic";
88
public GetNewMnemonicQueryMessage()
99
{
1010
Cmd = COMMAND;

0 commit comments

Comments
 (0)