Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4354 from EOSIO/4313
Browse files Browse the repository at this point in the history
Missing $ in inline action error message
  • Loading branch information
jgiszczak authored Jun 27, 2018
2 parents 90fefdd + 92fec6a commit ddf4631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/chain/apply_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ void apply_context::execute_inline( action&& a ) {
EOS_ASSERT( actor != nullptr, action_validate_exception,
"inline action's authorizing actor ${account} does not exist", ("account", auth.actor) );
EOS_ASSERT( control.get_authorization_manager().find_permission(auth) != nullptr, action_validate_exception,
"inline action's authorizations include a non-existent permission: {permission}",
"inline action's authorizations include a non-existent permission: ${permission}",
("permission", auth) );
}

Expand Down

0 comments on commit ddf4631

Please sign in to comment.