hashgraph / hedera-block-node

New Block Node services
Apache License 2.0
1 stars 0 forks source link

Add missing license headers to files #18

Closed Nana-EC closed 2 weeks ago

Nana-EC commented 1 month ago

Problem

A few files were created without license headers

Solution

Add the following license header

/*
 * ‌
 * Hedera Block Node
 * 
 * Copyright (C) 2024 Hedera Hashgraph, LLC
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ‍
 */

Alternatives

No response

mattp-swirldslabs commented 2 weeks ago

@jsync-swirlds noted in the PR for this issue that the header convention should be:

/*
 * Copyright (C) 2024 Hedera Hashgraph, LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */