Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
reorder send args (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolegys authored May 25, 2021
1 parent be8f8d1 commit 69ddcaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion neo-cli/CLI/MainService.Wallet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -451,9 +451,10 @@ private void OnSignCommand(JObject jsonObjectToSign)
/// <param name="to">To</param>
/// <param name="amount">Amount</param>
/// <param name="from">From</param>
/// <param name="data">Data</param>
/// <param name="signerAccounts">Signer's accounts</param>
[ConsoleCommand("send", Category = "Wallet Commands")]
private void OnSendCommand(UInt160 asset, UInt160 to, string amount, string data = null, UInt160 from = null, UInt160[] signerAccounts = null)
private void OnSendCommand(UInt160 asset, UInt160 to, string amount, UInt160 from = null, string data = null, UInt160[] signerAccounts = null)
{
if (NoWallet()) return;
string password = ReadUserInput("password", true);
Expand Down

0 comments on commit 69ddcaa

Please sign in to comment.