I'm having trouble passing grpc.max_receive_message_length and grpc.max_send_message_length arguments into a chaincode instance running as a server.
I've tried adding them to the cli command but haven't had any luck:
./src/chaincode.js --peer.address=0.0.0.0:9999 --grpc.max_receive_message_length=104857600 --grpc.max_send_message_length=104857600
I was wonder if someone could confirm that this functionality has been implemented yet, or if there's an alternative way to pass these values.