Added
- webapi route to control the spammer plugin
- getSpammerTips webapi call
Changed
- findTransaction now returns an intersection of the search criteria
- show database size in GB if size > 1 GB (dashboard)
- moved dashboard frontend code to another git repo (https://github.com/iotaledger/node-dashboard)
- spammer doesn't start automatically at node startup
- getNodeInfo now returns the connected peers count
Fixed
- OOM bug in the future cone solidifier
- map concurrent write/read panic in websocket
- warpsync milestone requesting
- re-add logger settings to mainnet config file
Config file changes
config.json
"httpAPI": {
+ "permittedRoutes": [
+ "healthz"
+ ],
}
+ "logger": {
+ "level": "info",
+ "disableCaller": true,
+ "encoding": "console",
+ "outputPaths": [
+ "stdout"
+ ]
+ },
"spammer": {
- "semiLazyTipsLimit": 30
},