From d6068763c5c5b289e40b88913e10c74d8128976a Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Mon, 2 Mar 2015 19:54:16 +0100 Subject: [PATCH] Fix FakeExtVM. --- libethereum/ExtVM.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethereum/ExtVM.h b/libethereum/ExtVM.h index a4ab7ead3..d63cd943a 100644 --- a/libethereum/ExtVM.h +++ b/libethereum/ExtVM.h @@ -70,7 +70,7 @@ public: virtual u256 txCount(Address _a) override final { return m_s.transactionsFrom(_a); } /// Does the account exist? - virtual bool exists(Address _a) { return m_s.addressInUse(_a); } + virtual bool exists(Address _a) override final { return m_s.addressInUse(_a); } /// Suicide the associated contract to the given address. virtual void suicide(Address _a) override final