File tree Expand file tree Collapse file tree 3 files changed +27
-6
lines changed Expand file tree Collapse file tree 3 files changed +27
-6
lines changed Original file line number Diff line number Diff line change 1
1
# [ fractal] ( https://github.com/fractalplatform/fractal ) Changelog
2
+ ## [ 0.0.24] - 2019-07-30
3
+ ### Fixed
4
+ - [ BLOCKCHAIN] blockchain store irreversible number
5
+ - [ TXPOOL] fixed txpool test failed in travis CI
6
+ ### Changed
7
+ - [ DPOS] update some dpos apis
8
+ ### Added
9
+ - [ LOG] add some log print
10
+ - [ RPC] add rpc dpos_snapShotStake and fixed GetActivedCandidate
11
+
12
+
2
13
## [ 0.0.23] - 2019-07-15
3
14
### Fixed
4
15
- [ RPC] fixed getTxsByAccount rpc arg check and uint infinite loop
192
203
- [ MAKEFILE] add check fmt tag_release release command
193
204
194
205
206
+ [ 0.0.24 ] : https://github.com/fractalplatform/fractal/compare/v0.0.23...v0.0.24
195
207
[ 0.0.23 ] : https://github.com/fractalplatform/fractal/compare/v0.0.22...v0.0.23
196
208
[ 0.0.22 ] : https://github.com/fractalplatform/fractal/compare/v0.0.21...v0.0.22
197
209
[ 0.0.21 ] : https://github.com/fractalplatform/fractal/compare/v0.0.20...v0.0.21
Original file line number Diff line number Diff line change 1
1
### Fixed
2
- - [ RPC ] fixed getTxsByAccount rpc arg check and uint infinite loop
3
- - [ BLOCKCHAIN ] modify blockchain start err
2
+ - [ BLOCKCHAIN ] blockchain store irreversible number
3
+ - [ TXPOOL ] fixed txpool test failed in travis CI
4
4
### Changed
5
- - [ TXPOOL] move TxPool reorg and events to background goroutine
6
- - [ P2P] ftfinder: add cmd flag that can input genesis block hash
5
+ - [ DPOS] update some dpos apis
7
6
### Added
8
- - [ P2P ] txpool.handler: add config of txs broadcast
9
- - [ RPC] add some dpos rpc api for browser
7
+ - [ LOG ] add some log print
8
+ - [ RPC] add rpc dpos_snapShotStake and fixed GetActivedCandidate
10
9
Original file line number Diff line number Diff line change @@ -43,6 +43,16 @@ import "github.com/monax/relic"
43
43
// release tagging script: ./scripts/tag_release.sh
44
44
var History relic.ImmutableHistory = relic .NewHistory ("fractal" , "https://github.com/fractalplatform/fractal" ).
45
45
MustDeclareReleases (
46
+ "0.0.24 - 2019-07-30" ,
47
+ `### Fixed
48
+ - [BLOCKCHAIN] blockchain store irreversible number
49
+ - [TXPOOL] fixed txpool test failed in travis CI
50
+ ### Changed
51
+ - [DPOS] update some dpos apis
52
+ ### Added
53
+ - [LOG] add some log print
54
+ - [RPC] add rpc dpos_snapShotStake and fixed GetActivedCandidate
55
+ ` ,
46
56
"0.0.23 - 2019-07-15" ,
47
57
`### Fixed
48
58
- [RPC] fixed getTxsByAccount rpc arg check and uint infinite loop
You can’t perform that action at this time.
0 commit comments