Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: license URL paths #1729

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2021-2022, Offchain Labs, Inc.
# For license information, see https://github.com/nitro/blob/master/LICENSE
# For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

# Docker builds mess up file timestamps. Then again, in docker builds we never
# have to update an existing file. So - for docker, convert all dependencies
Expand Down
2 changes: 1 addition & 1 deletion arbcompress/compress_cgo.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

//go:build !js
// +build !js
Expand Down
2 changes: 1 addition & 1 deletion arbcompress/compress_common.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbcompress

Expand Down
2 changes: 1 addition & 1 deletion arbcompress/compress_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbcompress

Expand Down
2 changes: 1 addition & 1 deletion arbcompress/compress_wasm.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

//go:build js
// +build js
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/programs/print/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package main

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/programs/time/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package main

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/arbcompress.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::{gostack::GoStack, machine::WasmEnvMut};

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/color.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2020-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

#![allow(dead_code)]

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/gostack.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

#![allow(clippy::useless_transmute)]

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/machine.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::{
arbcompress, gostack::GoRuntimeState, runtime, socket, syscall, syscall::JsRuntimeState,
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::machine::{Escape, WasmEnv};

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/runtime.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::{
gostack::{GoStack, TimeoutInfo},
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/socket.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use std::{
io,
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/syscall.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::{
gostack::GoStack,
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/test.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

#![cfg(test)]

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/jit/src/wavmio.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::{
gostack::GoStack,
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/host.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

#![allow(clippy::vec_init_then_push)]

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use arbutil::{format, Color, DebugColor};
use eyre::{Context, Result};
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/memory.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::{
merkle::{Merkle, MerkleType},
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/merkle.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::utils::Bytes32;
use digest::Digest;
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/reinterpret.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use num::Zero;
use std::{
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use eyre::{eyre, Result};
use serde::{Deserialize, Serialize};
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/value.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use crate::{binary::FloatType, utils::Bytes32};
use arbutil::Color;
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/test-cases/go/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package main

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/wasm-testsuite/check.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/bash

# Copyright 2022, Offchain Labs, Inc.
# For license information, see https://github.com/nitro/blob/master/LICENSE
# For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

rm -rf tests ../../contracts/test/prover/spec-proofs
mkdir -p tests/
Expand Down
2 changes: 1 addition & 1 deletion arbitrator/wasm-testsuite/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

use eyre::bail;
use prover::{
Expand Down
2 changes: 1 addition & 1 deletion arbnode/batch_poster.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/classicMessage.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/dataposter/data_poster.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package dataposter

Expand Down
2 changes: 1 addition & 1 deletion arbnode/dataposter/redis_storage.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package dataposter

Expand Down
2 changes: 1 addition & 1 deletion arbnode/dataposter/slice_storage.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package dataposter

Expand Down
2 changes: 1 addition & 1 deletion arbnode/delayed.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/delayed_seq_reorg_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/delayed_sequencer.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/execution/api.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package execution

Expand Down
2 changes: 1 addition & 1 deletion arbnode/execution/arb_interface.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package execution

Expand Down
2 changes: 1 addition & 1 deletion arbnode/execution/forwarder.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package execution

Expand Down
2 changes: 1 addition & 1 deletion arbnode/execution/sequencer.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package execution

Expand Down
2 changes: 1 addition & 1 deletion arbnode/execution/tx_pre_checker.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package execution

Expand Down
2 changes: 1 addition & 1 deletion arbnode/inbox_reader.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/inbox_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/inbox_tracker.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/maintenance.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/maintenance_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/message_pruner.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/message_pruner_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/node.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/schema.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/seq_coordinator.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/seq_coordinator_atomic_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/sequencer_inbox.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbnode/transaction_streamer.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package arbnode

Expand Down
2 changes: 1 addition & 1 deletion arbos/addressSet/addressSet.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package addressSet

Expand Down
2 changes: 1 addition & 1 deletion arbos/addressSet/addressSet_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package addressSet

Expand Down
2 changes: 1 addition & 1 deletion arbos/addressTable/addressTable.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2021-2022, Offchain Labs, Inc.
// For license information, see https://github.com/nitro/blob/master/LICENSE
// For license information, see https://github.com/offchainlabs/nitro/blob/master/LICENSE

package addressTable

Expand Down
Loading
Loading