Skip to content

Commit

Permalink
Ignore removeMessageEventHandlers temporarily (#575)
Browse files Browse the repository at this point in the history
* Ignore removeMessageEventHandlers temporarily

* Release 0.5.0-rc2
  • Loading branch information
muXxer authored Jul 26, 2020
1 parent bd99647 commit b33b321
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@

All notable changes to this project will be documented in this file.

## [0.5.0-rc2] - 26.07.2020

**Breaking change:**
** DO NOT USE IT ON MAINNET, IT WILL CRASH IMMEDIATELY AND IT WILL DESTROY YOUR DATABASE !!! **

### Changed

- Removed detaching events from Conn.Events temporarily

## [0.5.0-rc1] - 26.07.2020

**Breaking change:**
**Breaking change:**
** DO NOT USE IT ON MAINNET, IT WILL CRASH IMMEDIATELY AND IT WILL DESTROY YOUR DATABASE !!! **

### Added
Expand Down
2 changes: 1 addition & 1 deletion plugins/cli/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

var (
// AppVersion version number
AppVersion = "0.5.0-rc1"
AppVersion = "0.5.0-rc2"
LatestGithubVersion = AppVersion

// AppName app code name
Expand Down
2 changes: 1 addition & 1 deletion plugins/gossip/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func configure(plugin *node.Plugin) {

disconnectSignal := make(chan struct{})
p.Conn.Events.Close.Attach(events.NewClosure(func() {
removeMessageEventHandlers(p)
//removeMessageEventHandlers(p)
close(disconnectSignal)
}))

Expand Down

0 comments on commit b33b321

Please sign in to comment.