diff --git a/neo-cli/CLI/MainService.NEP5.cs b/neo-cli/CLI/MainService.NEP5.cs
index 3df0b2245..21feb195b 100644
--- a/neo-cli/CLI/MainService.NEP5.cs
+++ b/neo-cli/CLI/MainService.NEP5.cs
@@ -17,8 +17,9 @@ partial class MainService
/// To
/// Ammount
/// From
+ /// Cosigners
[ConsoleCommand("transfer", Category = "NEP5 Commands")]
- private void OnTransferCommand(UInt160 tokenHash, UInt160 to, decimal amount, UInt160 from = null)
+ private void OnTransferCommand(UInt160 tokenHash, UInt160 to, decimal amount, UInt160 from = null, UInt160[] cosigners = null)
{
var asset = new AssetDescriptor(tokenHash);
var value = BigDecimal.Parse(amount.ToString(CultureInfo.InvariantCulture), asset.Decimals);
@@ -36,7 +37,7 @@ private void OnTransferCommand(UInt160 tokenHash, UInt160 to, decimal amount, UI
Value = value,
ScriptHash = to
}
- }, from: from);
+ }, from: from, cosigners: cosigners);
}
catch (InvalidOperationException e)
{