Exonum Java Binding 0.2
Pre-release
Pre-release
Added
-
Standard services may be enabled using specific
ejb_app_services.toml
file.
It supports onlyconfiguration
andbtc-anchoring
services at the moment.To enable services put
ejb_app_services.toml
file into EJB App's directory
with the following content:services = ["configuration", "btc-anchoring"]
-
Added operations to get a message with and without signature
(BinaryMessage#getMessageNoSignature
andBinaryMessage#getSignedMessage
respectively).
(#339) -
Added methods to sign transaction messages and verify their signatures. (#341)
-
Enabled passing extra arguments to the JVM from the command line.
Use--ejb-jvm-args
flag to specify an additional argument, e.g.,
--ejb-jvm-args=Xmx2g
. (#342)