cleos system newaccount failed with “to account does not exist” error message
admin | EOS | 2018-06-01
C++
The following accounts need to be created before you can use eosio.system contract via cleos system newaccount to create accounts:
systemAccounts = [
'eosio.bpay',
'eosio.msig',
'eosio.names',
'eosio.ram',
'eosio.ramfee',
'eosio.saving',
'eosio.stake',
'eo... [阅读全文]
“Not producing block because the irreversible block is too old” when start nodeos after changing system time
admin | EOS | 2018-06-01
We added a command line argument (–max-irreversible-block-age) that will cause a node to automatically stop production when the last irreversible block time is older than N seconds, an indication that there are not enough producers confirming blocks for the chain to continue forward. This option prevents producers from ... [阅读全文]
大白话讲解 节点间数据安全传输神器WireGuard
admin | EOS | 2018-05-24
首先说明一下:今天好多朋友都在问EOS DAWN 4.0怎么还没出来?不是说好5.11号出来吗?对,是5.11号,是BM所在地区的时间,不是北京时间。所以,如果是按惯例的话,应该是明天早上5点-6点之间出来。
现在EOS社区的技术氛围越来越浓,许多大陆候选节点/华人参与的候选节点,都在积极参与社区的技术讨论。安全一直是讨论的重中之重。除了防DDoS,还有如... [阅读全文]
Set contract eosio.system error 3080006: transaction took too long (2)
admin | EOS | 2018-05-21
Shell
$ nodeos --max-transaction-time=1000 --resync
$ cleos create key # for eosio.token
$ cleos wallet import ...
$ cleos create account eosio eosio.token ...
$ cleos set contract eosio.token build/contracts/eosio.token
$ cleos push action eosio.token create '[ "eosio", "10000000000.0000 SYS",... [阅读全文]
EOS Error 3080006: transaction took too long
admin | EOS | 2018-05-17
Shell
cd eos/build
make install
cleos set contract build/contracts/eosio eosio.system -x 1000
123
cd eos/buildmake installcleos set contract build/contracts/eosio eosio.system -x 1000
[阅读全文]
EOS 重置依赖项 重新编译 MAC
admin | EOS | 2018-05-17
Shell
brew remove --force boost
brew remove --force llvm
cd /path/to/eos
rm -rf build/
git pull
git submodule update --init --recursive
./eosio_build.sh
1234567
brew remove --force boostbrew remove --force llvmcd /path/to/eosrm -rf build/git pullgit submodule u... [阅读全文]
EOS ERROR: Linking /usr/local/Cellar/python/3.6.5… Error: Permission denied @ dir_s_mkdir – /usr/local/Frameworks
admin | EOS | 2018-05-17
需要执行以下命令
Shell
sudo mkdir /usr/local/Frameworks
sudo chown $(whoami):admin /usr/local/Frameworks
12
sudo mkdir /usr/local/Frameworkssudo chown $(whoami):admin /usr/local/Frameworks
[阅读全文]
EOS ERROR:’stdint.h’ file not found when running the example of smart contract “Hello World”
admin | EOS | 2018-05-17
需要执行以下命令
Shell
cd ~/eos/build
sudo make install
12
cd ~/eos/buildsudo make install
参考链接https://github.com/EOSIO/eos/issues/1718
[阅读全文]
EOS ERROR: Could not find a package configuration file provided by “LLVM” (requested version 4.0) with any of the following names
admin | EOS | 2018-05-17
需要执行以下命令(检查一下你有没有这个目录,没有的话搜索一下)
Shell
export LLVM_DIR=/usr/local/Cellar/llvm\@4/4.0.1/lib/cmake
1
export LLVM_DIR=/usr/local/Cellar/llvm\@4/4.0.1/lib/cmake
参考链接https://github.com/EOSIO/eos/issues/43
[阅读全文]
EOS ERROR: Failed to find Gettext libintl (missing: Intl_INCLUDE_DIR)
admin | EOS | 2018-05-17
执行 eosio_build.sh
ERROR: Failed to find Gettext libintl (missing: Intl_INCLUDE_DIR)需要执行以下命令
Shell
brew unlink gettext && brew link --force gettext
find /usr -name libintl* -print 2>/dev/null
12
brew unlink gettext && brew link --force get... [阅读全文]