Skip to content

Commit b6610ed

Browse files
authored
Merge branch 'master' into dev
2 parents e214602 + d934507 commit b6610ed

54 files changed

Lines changed: 11 additions & 60 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

accounts/abi/event_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@ func TestEventTupleUnpack(t *testing.T) {
331331

332332
for _, tc := range testCases {
333333
assert := assert.New(t)
334-
tc := tc
335334
t.Run(tc.name, func(t *testing.T) {
336335
err := unpackTestEventData(tc.dest, tc.data, tc.jsonLog, assert)
337336
if tc.error == "" {

accounts/keystore/file_cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (fc *fileCache) scan(keyDir string) (mapset.Set[string], mapset.Set[string]
6767
log.Trace("Ignoring file on account scan", "path", path)
6868
continue
6969
}
70-
// Gather the set of all and fresly modified files
70+
// Gather the set of all and freshly modified files
7171
all.Add(path)
7272

7373
modified := fi.ModTime()

common/bitutil/compress_fuzz.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// along with the CortexFoundation library. If not, see <http://www.gnu.org/licenses/>.
1616

1717
//go:build gofuzz
18-
// +build gofuzz
1918

2019
package bitutil
2120

common/fdlimit/fdlimit_bsd.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// along with The go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

1717
//go:build freebsd || dragonfly
18-
// +build freebsd dragonfly
1918

2019
package fdlimit
2120

common/fdlimit/fdlimit_unix.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// along with The go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

1717
//go:build linux || netbsd || openbsd || solaris
18-
// +build linux netbsd openbsd solaris
1918

2019
package fdlimit
2120

consensus/consensus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"github.com/CortexFoundation/CortexTheseus/rpc"
2828
)
2929

30-
// ChainReader defines a small collection of methods needed to access the local
30+
// ChainHeaderReader defines a small collection of methods needed to access the local
3131
// blockchain during header and/or uncle verification.
3232
type ChainHeaderReader interface {
3333
// Config retrieves the blockchain's chain configuration.

core/mkalloc.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// along with the CortexFoundation library. If not, see <http://www.gnu.org/licenses/>.
1616

1717
//go:build none
18-
// +build none
1918

2019
/*
2120
The mkalloc tool creates the genesis allocation constants in genesis_alloc.go

core/vm/runtime/fuzz.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
// along with the CortexFoundation library. If not, see <http://www.gnu.org/licenses/>.
1616

1717
//go:build gofuzz
18-
// +build gofuzz
1918

2019
package runtime
2120

crypto/blake2b/blake2bAVX2_amd64.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build go1.7 && amd64 && !gccgo && !appengine
6-
// +build go1.7,amd64,!gccgo,!appengine
76

87
package blake2b
98

crypto/blake2b/blake2b_amd64.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// license that can be found in the LICENSE file.
44

55
//go:build !go1.7 && amd64 && !gccgo && !appengine
6-
// +build !go1.7,amd64,!gccgo,!appengine
76

87
package blake2b
98

0 commit comments

Comments
 (0)