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

Commit

Permalink
remove sqlite (#883)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim8y authored Oct 27, 2022
1 parent bc208c8 commit dcf1e28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion neo-cli/neo-cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Neo" Version="3.4.0" />
<PackageReference Include="Neo" Version="3.4.0-CI01391" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 1 addition & 3 deletions neo-gui/GUI/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
// modifications are permitted.

using Akka.Actor;
using Neo.IO;
using Neo.IO.Actors;
using Neo.Ledger;
using Neo.Network.P2P.Payloads;
Expand All @@ -19,7 +18,6 @@
using Neo.VM;
using Neo.Wallets;
using Neo.Wallets.NEP6;
using Neo.Wallets.SQLite;
using System;
using System.ComponentModel;
using System.Diagnostics;
Expand Down Expand Up @@ -135,7 +133,7 @@ private void Service_WalletChanged(object sender, Wallet wallet)
}

listView3.Items.Clear();
修改密码CToolStripMenuItem.Enabled = wallet is UserWallet;
修改密码CToolStripMenuItem.Enabled = wallet != null;
交易TToolStripMenuItem.Enabled = wallet != null;
signDataToolStripMenuItem.Enabled = wallet != null;
deployContractToolStripMenuItem.Enabled = wallet != null;
Expand Down

0 comments on commit dcf1e28

Please sign in to comment.