Skip to content

Commit 5f87ddf

Browse files
committed
docs: some url update (#1742)
1 parent fd58e6f commit 5f87ddf

File tree

6 files changed

+53
-53
lines changed

6 files changed

+53
-53
lines changed

.github/release.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
MAINNET_FILE_URL="https://github.com/binance-chain/bsc/releases/latest/download/mainnet.zip"
2-
TESTNET_FILE_URL="https://github.com/binance-chain/bsc/releases/latest/download/testnet.zip"
1+
MAINNET_FILE_URL="https://github.com/bnb-chain/bsc/releases/latest/download/mainnet.zip"
2+
TESTNET_FILE_URL="https://github.com/bnb-chain/bsc/releases/latest/download/testnet.zip"

SECURITY.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22

33
## Supported Versions
44

5-
Please see [Releases](https://github.com/binance-chain/bsc/releases). We recommend using the [most recently released version](https://github.com/binance-chain/bsc/releases/latest).
5+
Please see [Releases](https://github.com/bnb-chain/bsc/releases). We recommend using the [most recently released version](https://github.com/bnb-chain/bsc/releases/latest).
66

77
## Audit reports
88

9-
Audit reports are published in the `docs` folder: https://github.com/binance-chain/bsc/tree/master/docs/audits
9+
Audit reports are published in the `docs` folder: https://github.com/bnb-chain/bsc/tree/master/docs/audits
1010

11-
| Scope | Date | Report Link |
12-
| ------- | ------- | ----------- |
11+
| Scope | Date | Report Link |
12+
| ------ | -------- | -------------------------------------------------------------------------------------------------------- |
1313
| `geth` | 20170425 | [pdf](https://github.com/ethereum/go-ethereum/blob/master/docs/audits/2017-04-25_Geth-audit_Truesec.pdf) |
14-
| `clef` | 20180914 | [pdf](https://github.com/ethereum/go-ethereum/blob/master/docs/audits/2018-09-14_Clef-audit_NCC.pdf) |
14+
| `clef` | 20180914 | [pdf](https://github.com/ethereum/go-ethereum/blob/master/docs/audits/2018-09-14_Clef-audit_NCC.pdf) |
1515

1616
## Reporting a Vulnerability
1717

1818
**Please do not file a public ticket** mentioning the vulnerability.
1919

20-
To find out how to disclose a vulnerability in Ethereum visit [https://bugcrowd.com/binance](https://bugcrowd.com/binance) or email [email protected]. Please read the [disclosure page](https://github.com/binance-chain/bsc/security/advisories) for more information about publicly disclosed security vulnerabilities.
20+
To find out how to disclose a vulnerability in Ethereum visit [https://bugcrowd.com/binance](https://bugcrowd.com/binance) or email [email protected]. Please read the [disclosure page](https://github.com/bnb-chain/bsc/security/advisories) for more information about publicly disclosed security vulnerabilities.
2121

2222
Use the built-in `geth version-check` feature to check whether the software is affected by any known vulnerability. This command will fetch the latest [`vulnerabilities.json`](https://geth.ethereum.org/docs/vulnerabilities/vulnerabilities.json) file which contains known security vulnerabilities concerning `geth`, and cross-check the data against its own version number.

core/blockchain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ func (bc *BlockChain) GetVMConfig() *vm.Config {
529529

530530
func (bc *BlockChain) cacheReceipts(hash common.Hash, receipts types.Receipts) {
531531
// TODO, This is a hot fix for the block hash of logs is `0x0000000000000000000000000000000000000000000000000000000000000000` for system tx
532-
// Please check details in https://github.com/binance-chain/bsc/issues/443
532+
// Please check details in https://github.com/bnb-chain/bsc/issues/443
533533
// This is a temporary fix, the official fix should be a hard fork.
534534
const possibleSystemReceipts = 3 // One slash tx, two reward distribute txs.
535535
numOfReceipts := len(receipts)

core/systemcontracts/upgrade.go

Lines changed: 42 additions & 42 deletions
Large diffs are not rendered by default.

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ FROM ethereum/solc:0.6.4-alpine as bsc-genesis
1616

1717
RUN apk add --no-cache ca-certificates npm nodejs bash alpine-sdk expect
1818

19-
RUN git clone https://github.com/binance-chain/bsc-genesis-contract.git /root/genesis \
19+
RUN git clone https://github.com/bnb-chain/bsc-genesis-contract.git /root/genesis \
2020
&& cd /root/genesis && npm install
2121

2222
COPY docker/init_holders.template /root/genesis/init_holders.template

docker/Dockerfile.truffle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ethereum/solc:0.6.4-alpine
22

33
RUN apk add --no-cache ca-certificates npm nodejs bash alpine-sdk git
44

5-
RUN git clone https://github.com/binance-chain/canonical-upgradeable-bep20.git /usr/app/canonical-upgradeable-bep20
5+
RUN git clone https://github.com/bnb-chain/canonical-upgradeable-bep20.git /usr/app/canonical-upgradeable-bep20
66

77
WORKDIR /usr/app/canonical-upgradeable-bep20
88
COPY docker/truffle-config.js /usr/app/canonical-upgradeable-bep20

0 commit comments

Comments
 (0)