Skip to content

Commit

Permalink
eosio::digest256 renamed to eosio::checksum256 in CDT boscore#87
Browse files Browse the repository at this point in the history
  • Loading branch information
arhag committed Nov 7, 2018
1 parent b9f2cc3 commit 2d32226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eosio.msig/include/eosio.msig/eosio.msig.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace eosio {
ignore<std::vector<permission_level>> requested, ignore<transaction> trx);
[[eosio::action]]
void approve( name proposer, name proposal_name, permission_level level,
const eosio::binary_extension<eosio::digest256>& proposal_hash );
const eosio::binary_extension<eosio::checksum256>& proposal_hash );
[[eosio::action]]
void unapprove( name proposer, name proposal_name, permission_level level );
[[eosio::action]]
Expand Down
2 changes: 1 addition & 1 deletion eosio.msig/src/eosio.msig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void multisig::propose( ignore<name> proposer,
}

void multisig::approve( name proposer, name proposal_name, permission_level level,
const eosio::binary_extension<eosio::digest256>& proposal_hash )
const eosio::binary_extension<eosio::checksum256>& proposal_hash )
{
require_auth( level );

Expand Down

0 comments on commit 2d32226

Please sign in to comment.