From cbd5d4aba85df19ee33e76bfc91a089dcb81709f Mon Sep 17 00:00:00 2001 From: Erik Zhang Date: Thu, 20 Oct 2016 11:46:30 +0800 Subject: [PATCH] fix a compile error --- AntSharesCore/Wallets/Wallet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AntSharesCore/Wallets/Wallet.cs b/AntSharesCore/Wallets/Wallet.cs index f975b3abcf..00446213b4 100644 --- a/AntSharesCore/Wallets/Wallet.cs +++ b/AntSharesCore/Wallets/Wallet.cs @@ -33,7 +33,7 @@ public abstract class Wallet : IDisposable protected string DbPath => path; protected object SyncRoot { get; } = new object(); - protected uint WalletHeight => current_height; + public uint WalletHeight => current_height; protected abstract Version Version { get; } private Wallet(string path, byte[] passwordKey, bool create)