scan all ether transaction from geth
make, go, protoc
使用 https(帐号密码认证)
export GIT_TERMINAL_PROMPT=1
使用 git(SSH key 认证)
git config --global url."git@github.com:".insteadOf "https://github.com"
拉取代码并切到 dev 分支
go get github.com/tokenbankteam/tb_server
cd $GOPATH/src/github.com/tokenbankteam/tb_server
git checkout dev
# 修改三个参数配置 参考https://github.com/olebedev/go-duktape/pull/58/files
vim /home/heipacker/golib/pkg/mod/gopkg.in/olebedev/go-duktape.v3@v3.0.0-20200316214253-d7b0ff38cac9/duk_config.h
#define DUK_USE_JSON_DEC_RECLIMIT 16384
#define DUK_USE_JSON_ENC_RECLIMIT 16384
#define DUK_USE_NATIVE_CALL_RECLIMIT 16384
make
nohup ./tb.etherquery.s --datadir /data --syncmode=full --gcmode=archive --cache=1024 --port 30302 --rpc --rpcaddr 172.24.55.19 --rpcport 7545 --ws --wsaddr 172.24.55.19 --wsport 7546 --wsorigins "*" --rpccorsdomain "*" --rpcvhosts "*" &
Controller逻辑层 ==> Service层 ==> Model层 ==> Database层
==> Cache层
==> Config层 ==> Config层 ==> Config层
1. 不要把协议层的数据结构传入Model层或者更底层
2. 不要把Controller层的gin.Context传到Service或者Model层