What is the equivalent of Init function in Java chaincode? I have been looking at this documentation but am unable to find out what function will be called when I run peer chain code instantiate...
This is the go variation.
func (t *SimpleAsset) Init(stub shim.ChaincodeStubInterface) peer.Response {
}
I am looking for an equivalent or a way to initialize the ledger when deploying java chaincode. My Chaincode is implementing the ContractInterface
.