Aaron Fu

Results 3 issues of 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...

enhancement

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....

documentation