From 328a6a866ee6ec37b1fb7405da970f4a8bd42f44 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Wed, 30 Oct 2019 23:21:34 -0600 Subject: [PATCH] Fix code comment (#6640) automerge --- runtime/src/message_processor.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/src/message_processor.rs b/runtime/src/message_processor.rs index 077dcb3a09..8bec2f9898 100644 --- a/runtime/src/message_processor.rs +++ b/runtime/src/message_processor.rs @@ -133,8 +133,7 @@ pub fn verify_instruction( return Err(InstructionError::CreditOnlyDataModified); } - // executable is one-way (false->true) and - // only system or the account owner may modify. + // executable is one-way (false->true) and only the account owner may set it. if pre.executable != post.executable && (!is_debitable // line coverage used to get branch coverage || pre.executable // line coverage used to get branch coverage