Skip to content

Commit

Permalink
Merge pull request #67 from holiman/copyright_header
Browse files Browse the repository at this point in the history
Update copyright header comments
  • Loading branch information
chfast authored May 13, 2020
2 parents fdf4f26 + bb45540 commit 65346a6
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Fixed size math
# Fixed size 256-bit math library

This is a library specialized at replacing the big.Int library for math based on 256-bit types. This is meant for use in [go-ethereum](https://github.com/ethereum/go-ethereum) eventually, once it's deemed fast, stable and secure enough.

Expand Down
7 changes: 3 additions & 4 deletions benchmarks_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright 2019-2020 uint256 Authors.
// Use of this source code is governed by a BSD-style license that can be found
// in the COPYING file.
//
// uint256: Fixed size 256-bit math library
// Copyright 2020 uint256 Authors
// SPDX-License-Identifier: BSD-3-Clause

package uint256

Expand Down
9 changes: 3 additions & 6 deletions conversion.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
// Copyright 2020 Martin Holst Swende. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be found
// in the COPYING file.
//

// Package math provides integer math utilities.
// uint256: Fixed size 256-bit math library
// Copyright 2020 uint256 Authors
// SPDX-License-Identifier: BSD-3-Clause

package uint256

Expand Down
7 changes: 3 additions & 4 deletions conversion_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright 2020 Martin Holst Swende. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be found
// in the COPYING file.
//
// uint256: Fixed size 256-bit math library
// Copyright 2020 uint256 Authors
// SPDX-License-Identifier: BSD-3-Clause

package uint256

Expand Down
4 changes: 4 additions & 0 deletions div.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// uint256: Fixed size 256-bit math library
// Copyright 2020 uint256 Authors
// SPDX-License-Identifier: BSD-3-Clause

package uint256

import "math/bits"
Expand Down
4 changes: 4 additions & 0 deletions fuzz.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// uint256: Fixed size 256-bit math library
// Copyright 2020 uint256 Authors
// SPDX-License-Identifier: BSD-3-Clause

// +build gofuzz

package uint256
Expand Down
7 changes: 3 additions & 4 deletions uint256.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright 2019 Martin Holst Swende. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be found
// in the COPYING file.
//
// uint256: Fixed size 256-bit math library
// Copyright 2018-2020 uint256 Authors
// SPDX-License-Identifier: BSD-3-Clause

// Package math provides integer math utilities.

Expand Down
7 changes: 3 additions & 4 deletions uint256_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright 2019 Martin Holst Swende. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be found
// in the COPYING file.
//
// uint256: Fixed size 256-bit math library
// Copyright 2018-2020 uint256 Authors
// SPDX-License-Identifier: BSD-3-Clause

package uint256

Expand Down

0 comments on commit 65346a6

Please sign in to comment.