Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Dec 17, 2024
2 parents 14e769b + 207eb14 commit 2ea0f5f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 10 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# CHANGELOG

## [v0.120.0](https://github.com/nervosnetwork/ckb/compare/v0.119.0...v0.120.0) (2024-12-11)

### Features

- #4477: (experimental) optional fee estimator with different algorithms (@yangby-cryptape)
- #4683: Small WASM support (@driftluo)
- #4729: Default listen on ws port (@driftluo)
- #4741: Let old config node open ws listen by default (@driftluo)

This is a breaking change to the config.

### Bug Fixes

- #4709: Fix pg sqlite inconsistent types (@driftluo)

### Improvements

- #4694: Support LZ4 rocksdb compression type (@eval-exec)
- #4700: Generate `default.db-options` file if it not exist (@eval-exec)
- #4702: Don't ban remote peer when VM receives Ctrl-C signal while processing `chunk_tx` (@eval-exec)
- #4728: Remove anyhow's backtrace from RPC response (@eval-exec)

This is a breaking change to RPC where the error messages have changed.

## [v0.119.0](https://github.com/nervosnetwork/ckb/compare/v0.118.0...v0.119.0) (2024-10-25)

### Features
Expand Down
20 changes: 10 additions & 10 deletions util/constant/src/default_assume_valid_target.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ pub mod mainnet {
///
/// Need to update when CKB's new release
/// in mainnet: the 60 days ago block is:
/// height: 13735790
/// hash: 0x1dc6ebf09bf066b6d4c6b9bf1ded8e4c692c55b14f98bff231a4cb26720412cd
/// date: Sun Aug 11 07:55:39 AM CST 2024
/// you can view this block in https://explorer.nervos.org/block/0x1dc6ebf09bf066b6d4c6b9bf1ded8e4c692c55b14f98bff231a4cb26720412cd
/// height: 14050088
/// hash: 0x323642363d254e830556ba670907d4455c2aeb8a38a227da7401e92a297efede
/// date: Wed Sep 18 08:24:48 AM CST 2024
/// you can view this block in https://explorer.nervos.org/block/0x323642363d254e830556ba670907d4455c2aeb8a38a227da7401e92a297efede
pub const DEFAULT_ASSUME_VALID_TARGET: &str =
"0x1dc6ebf09bf066b6d4c6b9bf1ded8e4c692c55b14f98bff231a4cb26720412cd";
"0x323642363d254e830556ba670907d4455c2aeb8a38a227da7401e92a297efede";
}
/// sync config related to testnet
pub mod testnet {
/// Default assume valid target for testnet, expect to be a block 60 days ago.
///
/// Need to update when CKB's new release
/// in testnet: the 60 days ago block is:
/// height: 14203467
/// hash: 0xa13450d53528d80fb5886f35386cf0119eea74cc63092c1138c38971416fe445
/// date: Sun Aug 11 07:56:19 AM CST 2024
/// you can view this block in https://pudge.explorer.nervos.org/block/0xa13450d53528d80fb5886f35386cf0119eea74cc63092c1138c38971416fe445
/// height: 14613282
/// hash: 0x9674c22c68f4b65ff97944151c39ff3f8108707b4bc86378393b3312a823db77
/// date: Wed Sep 18 08:25:27 AM CST 2024
/// you can view this block in https://pudge.explorer.nervos.org/block/0x9674c22c68f4b65ff97944151c39ff3f8108707b4bc86378393b3312a823db77
pub const DEFAULT_ASSUME_VALID_TARGET: &str =
"0xa13450d53528d80fb5886f35386cf0119eea74cc63092c1138c38971416fe445";
"0x9674c22c68f4b65ff97944151c39ff3f8108707b4bc86378393b3312a823db77";
}

0 comments on commit 2ea0f5f

Please sign in to comment.