You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/question.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,4 +6,5 @@ labels: 'type:docs'
6
6
assignees: ''
7
7
---
8
8
9
-
This should only be used in very rare cases e.g. if you are not 100% sure if something is a bug or asking a question that leads to improving the documentation. For general questions please use [discord](https://discord.gg/nthXNEv) or the Ethereum stack exchange at https://ethereum.stackexchange.com.
9
+
This should only be used in very rare cases e.g. if you are not 100% sure if something is a bug or asking a question that leads to improving the documentation.
10
+
For general questions please use [discord](https://discord.com/invite/bnbchain).
text: "SA1019: cfg.TxLookupLimit is deprecated: use 'TransactionHistory' instead."
74
-
- path: cmd/utils/flags.go
75
-
text: "SA1019: ethconfig.Defaults.TxLookupLimit is deprecated: use 'TransactionHistory' instead."
76
-
- path: internal/build/pgp.go
77
-
text: 'SA1019: "golang.org/x/crypto/openpgp" is deprecated: this package is unmaintained except for security fixes.'
78
-
- path: core/vm/contracts.go
79
-
text: 'SA1019: "golang.org/x/crypto/ripemd160" is deprecated: RIPEMD-160 is a legacy hash and should not be used for new applications.'
80
-
exclude:
81
-
- 'SA1019: event.TypeMux is deprecated: use Feed'
82
-
- 'SA1019: strings.Title is deprecated'
83
-
- 'SA1019: strings.Title has been deprecated since Go 1.18 and an alternative has been available since Go 1.0: The rule Title uses for word boundaries does not handle Unicode punctuation properly. Use golang.org/x/text/cases instead.'
84
-
- 'SA1029: should not use built-in type string as key for value'
60
+
- linters:
61
+
- deadcode
62
+
- staticcheck
63
+
path: crypto/bn256/cloudflare/optate.go
64
+
- linters:
65
+
- staticcheck
66
+
path: core/txpool/legacypool/list.go
67
+
- linters:
68
+
- unused
69
+
path: core/state/metrics.go
70
+
- linters:
71
+
- revive
72
+
path: crypto/bn256/
73
+
- path: cmd/utils/flags.go
74
+
text: "SA1019: cfg.TxLookupLimit is deprecated: use 'TransactionHistory' instead."
75
+
- path: cmd/utils/flags.go
76
+
text: "SA1019: ethconfig.Defaults.TxLookupLimit is deprecated: use 'TransactionHistory' instead."
77
+
- path: internal/build/pgp.go
78
+
text: 'SA1019: "golang.org/x/crypto/openpgp" is deprecated: this package is unmaintained except for security fixes.'
79
+
- path: core/vm/contracts.go
80
+
text: 'SA1019: "golang.org/x/crypto/ripemd160" is deprecated: RIPEMD-160 is a legacy hash and should not be used for new applications.'
81
+
- path: (.+)\.go$
82
+
text: 'SA1019: event.TypeMux is deprecated: use Feed'
83
+
- path: (.+)\.go$
84
+
text: 'SA1019: strings.Title is deprecated'
85
+
- path: (.+)\.go$
86
+
text: 'SA1019: strings.Title has been deprecated since Go 1.18 and an alternative has been available since Go 1.0: The rule Title uses for word boundaries does not handle Unicode punctuation properly. Use golang.org/x/text/cases instead.'
87
+
- path: (.+)\.go$
88
+
text: 'SA1029: should not use built-in type string as key for value'
CVE-2024-34478 # "CWE-754: Improper Check for Unusual or Exceptional Conditions." This vulnerability is BTC only, BSC does not have the issue.
2
-
CVE-2021-43668 # "CWE-476: NULL Pointer Dereference", the repo: syndtr/goleveldb is not actively maintained, seems there is no fix for this crash yet, BSC used pebbleDB to replaced levelDB, so ignore this vulnerability.
2
+
CVE-2021-43668 # "CWE-476: NULL Pointer Dereference", the repo: syndtr/goleveldb is not actively maintained, seems there is no fix for this crash yet, BSC used pebbleDB to replaced levelDB, so ignore this vulnerability.
3
+
CVE-2025-47908 # "CWE-400: Uncontrolled Resource Consumption ('Resource Exhaustion')", This vulnerability is only for RPC nodes which have specifically enabled malicous Cors options, which is unlikely to happen.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,36 @@
1
1
# Changelog
2
+
## v1.6.0
3
+
v1.6.0-alpha is a preview release for upstream code sync, it catches up with [go-ethereum release [v1.16.1]](https://github.com/ethereum/go-ethereum/releases/tag/v1.16.1) and also inlcude several bug fix.
0 commit comments