kad.Contact with scodec; dataset with contract check (#35)

* - kad.Contact with scodec, gitHash, protocolVersion
- check that dataset is stored by this node

* SignAlgo in NodeComposer

* Some review fixes
This commit is contained in:
Dmitry Kurinskiy 2018-02-12 10:52:03 +03:00 committed by GitHub
parent 79738aa2c7
commit 73ae64cc6a

View File

@ -136,5 +136,5 @@ object Ecdsa {
* `secp256k1` refers to the parameters of the ECDSA curve
* `SHA256withECDSA` Preferably the size of the key is greater than or equal to the digest algorithm
*/
def ecdsa_secp256k1_sha256[F[_]](implicit F: MonadError[F, Throwable]) = new Ecdsa("secp256k1", "SHA256withECDSA")
lazy val ecdsa_secp256k1_sha256 = new Ecdsa("secp256k1", "SHA256withECDSA")
}