From f6a8025ee9bcf14973be18c7f64843209518e62c Mon Sep 17 00:00:00 2001 From: Bucky Kittinger Date: Mon, 26 Feb 2018 10:25:15 -0500 Subject: [PATCH] One more clean up --- libraries/chain/apply_context.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/chain/apply_context.cpp b/libraries/chain/apply_context.cpp index 736c10548e6..3d31e2363e6 100644 --- a/libraries/chain/apply_context.cpp +++ b/libraries/chain/apply_context.cpp @@ -23,10 +23,10 @@ void apply_context::exec_one() // get code from cache auto code = mutable_controller.get_wasm_cache().checkout_scoped(a.code_version, a.code.data(), a.code.size()); - // get wasm_interface - auto &wasm = wasm_interface::get(); - wasm.apply(code, *this); - } + // get wasm_interface + auto &wasm = wasm_interface::get(); + wasm.apply(code, *this); + } } } FC_CAPTURE_AND_RETHROW((_pending_console_output.str()));