From e0b1e40556ccf04fe84a67777d77873df7fa92f8 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 3 Apr 2015 19:04:23 +0200 Subject: [PATCH] Fixes #1505 --- alethzero/MainWin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alethzero/MainWin.cpp b/alethzero/MainWin.cpp index 610fd032d..e848b4017 100644 --- a/alethzero/MainWin.cpp +++ b/alethzero/MainWin.cpp @@ -1582,7 +1582,7 @@ void Main::on_debugCurrent_triggered() unsigned txi = item->data(Qt::UserRole + 1).toInt(); bytes t = ethereum()->blockChain().transaction(h, txi); State s(ethereum()->state(txi, h)); - Executive e(s, ethereum()->blockChain(), PendingBlock); + Executive e(s, ethereum()->blockChain()); Debugger dw(this, this); dw.populate(e, Transaction(t, CheckSignature::Sender)); dw.exec();