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

Commit dcf1e28

Browse files
authored
remove sqlite (#883)
1 parent bc208c8 commit dcf1e28

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Diff for: neo-cli/neo-cli.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Neo" Version="3.4.0" />
26+
<PackageReference Include="Neo" Version="3.4.0-CI01391" />
2727
</ItemGroup>
2828

2929
<ItemGroup>

Diff for: neo-gui/GUI/MainForm.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// modifications are permitted.
1010

1111
using Akka.Actor;
12-
using Neo.IO;
1312
using Neo.IO.Actors;
1413
using Neo.Ledger;
1514
using Neo.Network.P2P.Payloads;
@@ -19,7 +18,6 @@
1918
using Neo.VM;
2019
using Neo.Wallets;
2120
using Neo.Wallets.NEP6;
22-
using Neo.Wallets.SQLite;
2321
using System;
2422
using System.ComponentModel;
2523
using System.Diagnostics;
@@ -135,7 +133,7 @@ private void Service_WalletChanged(object sender, Wallet wallet)
135133
}
136134

137135
listView3.Items.Clear();
138-
修改密码CToolStripMenuItem.Enabled = wallet is UserWallet;
136+
修改密码CToolStripMenuItem.Enabled = wallet != null;
139137
交易TToolStripMenuItem.Enabled = wallet != null;
140138
signDataToolStripMenuItem.Enabled = wallet != null;
141139
deployContractToolStripMenuItem.Enabled = wallet != null;

0 commit comments

Comments
 (0)