Re: How parse qccc response data in java-sdk #fabric-sdk-java
Mark Lewis
It returns a serialised Block protocol buffer message (see implementation). You should be able to deserialise it using the compiled protobuf implementations packaged in fabric-sdk-java. Something like:
Common.Block block = Common.Block.parseFrom(result); |
|