Aaron Fu
Aaron Fu
## Change Description Related to Issue #868. In the current code, `EOSIO_DISPATCH_INTERNAL` assumes the existence of boolean variable `executed`. There are two external entry points for that: ``` Path 1:...
Problem Reproduction ---------------------- Given a smart contract `hello.cpp` ```c++ #include class [[eosio::contract("hello")]] hello : public eosio::contract { public: using eosio::contract::contract; [[eosio::action]] void hi() { eosio::print(sizeof(UINT64_C(1))); } }; ``` Compile and...
Code: [Source](https://github.com/EOSIO/eosio.contracts/blob/develop/) Regarding https://developers.eos.io/manuals/eosio.contracts/latest/action-reference/eosio.bios/index/#setabi For the 2rd argument `abi` of the function `void setabi(account, abi)` the current description > "the abi hash represented as a vector of characters" is inaccurate....
In `include/fc/crypto/sha256.hpp` we specialized `boost::hash` without properly including the Boost header ``. https://github.com/EOSIO/fc/blob/0793fbe8262973b6707638dac9c6aaaf4913194e/include/fc/crypto/sha256.hpp#L125-L130 This PR includes the above header. The previous success of the fc build might have relied on...