hi,
I am able to to submit the transactions using" peer chaincode invoke" command .
But when I am trying to submit the transactions using fabric client sdk (java), following error is coming at peer logs (appearing after a short interval after the transaction )
INFO [gateway] Submit -> Sending transaction to orderer txID=b55cfbc2f386f993fa364b7842a7fa17909f5730fd9ab292d396c208e7d88963 endpoint=orderer1.org1orderer.com:8050
WARN [gateway] Submit -> Error sending transaction to orderer txID=b55cfbc2f386f993fa364b7842a7fa17909f5730fd9ab292d396c208e7d88963 endpoint=orderer1.org1orderer.com:8050 err="rpc error: code = Canceled desc = context canceled"
INFO [comm.grpc.server] 1 -> unary call completed grpc.service=gateway.Gateway grpc.method=Submit grpc.request_deadline=2022-11-08T08:35:48.119Z grpc.peer_address=10.14.4.7:55468 error="rpc error: code = Canceled desc = context canceled" grpc.code=Canceled grpc.call_duration=2m0.003552055s
The tranasction is reaching at the chaincode (it is visible at the chaincode logs).But the block creation is not happening.No error is coming at the orderer.
GET function is working from fabric client sdk.
What maybe the reason for this?