-
Notifications
You must be signed in to change notification settings - Fork 224
Conversation
A historical achievement. Congratulations, Erik. |
@@ -815,19 +730,8 @@ private bool OnListAddressCommand(string[] args) | |||
private bool OnListAssetCommand(string[] args) | |||
{ | |||
if (NoWallet()) return true; | |||
foreach (var item in Program.Wallet.GetCoins().Where(p => !p.State.HasFlag(CoinState.Spent)).GroupBy(p => p.Output.AssetId, (k, g) => new | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we will add this in the future?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did not find a good way to list all NEP-5 assets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should iterate all contracts, and try to find it according to NEP10?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or maybe we should add a new command for wallets, add nep5 token, and only look if you append it before?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will build this function into Wallet
.
When neo-project/neo#753 will be integrated, i can approve it |
@shargon It will be. We are going to test it before approving. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Settings.cs(69,16): error CS0246: The type or namespace name 'Fixed8' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/Coins.cs(26,16): error CS0246: The type or namespace name 'Fixed8' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/Coins.cs(47,16): error CS0246: The type or namespace name 'Fixed8' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/Coins.cs(55,16): error CS0246: The type or namespace name 'ClaimTransaction' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/Coins.cs(91,16): error CS0246: The type or namespace name 'ClaimTransaction' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/MainService.cs(40,17): error CS0246: The type or namespace name 'WalletIndexer' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/MainService.cs(256,16): error CS0246: The type or namespace name 'InvocationTransaction' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/MainService.cs(284,68): error CS0246: The type or namespace name 'InvocationTransaction' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/MainService.cs(284,16): error CS0246: The type or namespace name 'InvocationTransaction' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/MainService.cs(304,35): error CS0246: The type or namespace name 'InvocationTransaction' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/MainService.cs(1366,42): error CS0246: The type or namespace name 'WalletIndexer' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
Shell/MainService.cs(35,17): error CS0246: The type or namespace name 'WalletIndexer' could not be found (are you missing a using directive or an assembly reference?) [/opt/neoCli/neo-cli/neo-cli.csproj]
neo-cli/neo-cli.csproj
Outdated
@@ -3,7 +3,7 @@ | |||
<PropertyGroup> | |||
<Copyright>2016-2019 The Neo Project</Copyright> | |||
<AssemblyTitle>Neo.CLI</AssemblyTitle> | |||
<Version>3.0.0-preview1</Version> | |||
<Version>2.10.1</Version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is not 3?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After we are ready for release the preview, I will increase the version number.
Maybe we need to solve the test error before merge |
The error is because of the wrong uploaded package on the NuGet. There is no way to solve it now. |
No description provided.