Skip to content

Commit

Permalink
fix: fix chain manage contract address
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Sep 1, 2018
1 parent f5b7dbf commit 12b4558
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ The `nervos.js` library is a collection of packages which contains specific func
[fix]: **utils.hexToBytes**, and error of original web3@1.0.0;
[fix]: **setProvider**, enable `nervos.setProvider` function;
[update]: **UMD Object**, update UMD Object to `window.Nervos`;
[fix]: **Chain Manage**, fix chainManage Contract address;
2 changes: 1 addition & 1 deletion packages/nervos-chain/lib/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/nervos-chain/lib/systems/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.ReservedAddr = {
admin: '0xffffffffffffffffffffffffffffffffff02000c',
authorization: '0xffffffffffffffffffffffffffffffffff020006',
chainManageer: '0xffffffffffffffffffffffffffffffffff020002',
chainManager: '0xffffffffffffffffffffffffffffffffff020002',
groupManagement: '0xffffffffffffffffffffffffffffffffff02000a',
nodeManager: '0xffffffffffffffffffffffffffffffffff020001',
permissionManagement: '0xffffffffffffffffffffffffffffffffff020004',
Expand Down
2 changes: 1 addition & 1 deletion packages/nervos-chain/src/systems/config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const ReservedAddr: { [index: string]: string } = {
admin: '0xffffffffffffffffffffffffffffffffff02000c',
authorization: '0xffffffffffffffffffffffffffffffffff020006',
chainManageer: '0xffffffffffffffffffffffffffffffffff020002',
chainManager: '0xffffffffffffffffffffffffffffffffff020002',
groupManagement: '0xffffffffffffffffffffffffffffffffff02000a',
nodeManager: '0xffffffffffffffffffffffffffffffffff020001',
permissionManagement: '0xffffffffffffffffffffffffffffffffff020004',
Expand Down

0 comments on commit 12b4558

Please sign in to comment.