pub async fn timeout_receive_storage_response<StorageOkResultType, LogicOkResultType>(
timeout_after_milliseconds: u64,
storage_receiver: Receiver<Result<StorageOkResultType, Error>>,
api_replier: Sender<Result<LogicOkResultType, Error>>,
) -> Result<(Sender<Result<LogicOkResultType, Error>>, StorageOkResultType), Error>