- Notifications
You must be signed in to change notification settings - Fork146
CQL-Proxy And CQL-ETH-Bridge#359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
xq262144 commentedJun 24, 2019
- DBaaS Proxy server.
- ETH-CQL Particle exchange bridge.
dep: | ||
dep ensure -v | ||
rm -rfv ./vendor/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/ | ||
cp -av "$${GOPATH}/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/" ./vendor/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Why we need do this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
The dep program will treat the libsecp256k1 c package as a unused golang package and remove it on prune stage. However if we disable prune for the ethereum dependency, whole ethereum source code will be merged into CovenantSQL. So a manually code sync is required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Okey, but after that we should not usedep ensure
, usemake dep
ordep ensure -add xxxPkg
,dep ensure -update xxxPkg
@laodouya@leventeliu