mimblewimble / rust-secp256k1-zkp

ZKP fork for rust-secp256k1, adds wrappers for range proofs, pedersen commitments, etc
Creative Commons Zero v1.0 Universal
56 stars 51 forks source link

Fix build warnings #47

Closed quentinlesceller closed 5 years ago

quentinlesceller commented 5 years ago

Switch from deprecated gcc to cc.

quentinlesceller commented 5 years ago

Seems like nightly Travis CI isn't passing for some reasons (and it looks like it happened before too). Should pass on Azure.

garyyu commented 5 years ago

In src/pedersen.rs, line 863: change

            Some(mut n) => n.0.as_mut_ptr(),

to

            Some(n) => n.0.as_mut_ptr(),

then this PR CI should pass.

garyyu commented 5 years ago

Merge and will remove that warning in another PR, together with some rust 1.35 build warnings.

quentinlesceller commented 5 years ago

Seems like the CI was broken with Travis but AP (Azure Pipelines) worked fine.