Skip to content

v0.7.0

Compare
Choose a tag to compare
@LeoStehlik LeoStehlik released this 15 Feb 10:47
· 11 commits to master since this release

This IS a mandatory upgrade.

Please upgrade your nodes prior height 2,517,000 after which we hard-fork. If you do not upgrade to this version, your node will stop syncing and processing blocks when it reaches the fork height.

Changes

Reduce network fee to 100 DEGO (10000 in atomic units)

The hard-fork introduces reduction of network fees to 100 DEGO from current 10000 DEGO.

Removes NORMAL_TX_MAX_OUTPUT_COUNT consensus

We implemented this check as part of one of addressing one of the attack vectors. We believe misuse of our network is taken care by our TX PoW implementation, therefore no longer need this.

Ignor inputs that are below certain threshold for wallet-api

Our network has significant number of 0.01 inputs. We decided to ignore most of them while wallet scanning with wallet-api.

Oficially reinstated fusion transactions via derogold-service

Although we no longer support derogold-service (please make sure you switch to wallet-api instead), for the time being for our third party service provider (Exchanges) we decided to put back fusion transaction support in the derogold service.

Please note the derogold-service will be EOL and removed with the next release of DeroGold core suite.

Increased limit on number of fusion transactions in the transaction pool

With 300 seconds block time, we need to reconsider the number of fusion transactions allowed to make it to the transaction pool. This is due to Exchanges and other third party services providers need to optimize their wallets frequently. We have increased the maximum number of allowed fusion transactions in the transaction pool to 130 (FUSION_TX_MAX_POOL_COUNT = 130)

Increased limit on number of transactions in the transaction pool

With 300 seconds block time, we need to reconsider the number of total transactions allowed to make it to the transaction pool. This is due to inreased adoption of DeroGold for more frequent transacting by users and other third party services providers. We have increased the maximum number of allowed transactions in the transaction pool to 260 (TX_MAX_POOL_COUNT = 260)

Fix ARM builds

AES support was not building properly and throwing. This release fixes it.