Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
Merge branch 'poc-7+'
Browse files Browse the repository at this point in the history
  • Loading branch information
gavofyork committed Jan 13, 2015
2 parents f0158fd + 7775503 commit c69d0f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions libdevcrypto/CryptoPP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ bool Secp256k1::verifySecret(Secret const& _s, Public& _p)

void Secp256k1::agree(Secret const& _s, Public const& _r, h256& o_s)
{
(void)_s;
(void)_r;
(void)o_s;
ECDH<ECP>::Domain d(m_oid);
assert(d.AgreedValueLength() == sizeof(o_s));
byte remote[65] = {0x04};
Expand Down
2 changes: 1 addition & 1 deletion libsolidity/SourceReferenceFormatter.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
namespace dev
{

class Exception; // forward
struct Exception; // forward

namespace solidity
{
Expand Down

0 comments on commit c69d0f7

Please sign in to comment.