Skip to content

Commit

Permalink
Merge pull request #1836 from ergoplatform/v4.0.44
Browse files Browse the repository at this point in the history
Candidate for 4.0.44
  • Loading branch information
kushti authored Sep 18, 2022
2 parents d5cb8e1 + 12ea105 commit c66cd12
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ To run specific Ergo version `<VERSION>` as a service with custom config `/path/
-e MAX_HEAP=3G \
ergoplatform/ergo:<VERSION> --<networkId> -c /etc/myergo.conf

Available versions can be found on [Ergo Docker image page](https://hub.docker.com/r/ergoplatform/ergo/tags), for example, `v4.0.43`.
Available versions can be found on [Ergo Docker image page](https://hub.docker.com/r/ergoplatform/ergo/tags), for example, `v4.0.44`.

This will connect to the Ergo mainnet or testnet following your configuration passed in `myergo.conf` and network flag `--<networkId>`. Every default config value would be overwritten with corresponding value in `myergo.conf`. `MAX_HEAP` variable can be used to control how much memory can the node consume.

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: "3.0.2"

info:
version: "4.0.43"
version: "4.0.44"
title: Ergo Node API
description: API docs for Ergo Node. Models are shared between all Ergo products
contact:
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ scorex {
nodeName = "ergo-node"

# Network protocol version to be sent in handshakes
appVersion = 4.0.43
appVersion = 4.0.44

# Network agent name. May contain information about client code
# stack, starting from core code-base up to the end graphical interface.
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mainnet.conf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ scorex {
network {
magicBytes = [1, 0, 2, 4]
bindAddress = "0.0.0.0:9030"
nodeName = "ergo-mainnet-4.0.43"
nodeName = "ergo-mainnet-4.0.44"
nodeName = ${?NODENAME}
knownPeers = [
"213.239.193.208:9030",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ class ErgoNodeViewSynchronizer(networkControllerRef: ActorRef,
case FullBlockApplied(header) =>
if (header.isNew(timeProvider, 1.hour)) {
broadcastModifierInv(Header.modifierTypeId, header.id)
header.sectionIds.foreach { case (_, id) => broadcastModifierInv(Header.modifierTypeId, id) }
header.sectionIds.foreach { case (mtId, id) => broadcastModifierInv(mtId, id) }
}
clearDeclined()
clearInterblockCost()
Expand Down Expand Up @@ -1261,7 +1261,7 @@ object ErgoNodeViewSynchronizer {
* @param state - up-to-date state to check transaction against
* @param mempool - mempool to check
*/
case class RecheckMempool(state: UtxoStateReader, mempool: ErgoMemPoolReader) extends NodeViewChange
case class RecheckMempool(state: UtxoStateReader, mempool: ErgoMemPoolReader)
}

}

0 comments on commit c66cd12

Please sign in to comment.