Skip to content

OriginTrail Testnet Release v8.1.0+rc.1

Choose a tag to compare

@Mihajlo-Pavlovic Mihajlo-Pavlovic released this 22 May 14:56
· 460 commits to v8/develop since this release
b19526f

DKG Random sampling release candidate lands on testnet

DKG V8.1.0-rc.1 has just been released to DKG testnet, the first release candidate for the major version upgrade on the DKG V8.1, bringing us one step closer to the fully upgraded DKG Staking system.

V8.1.0-rc.1 introduces the DKG sync feature, enabling DKG core nodes to “sync” the entire DKG knowledge, such as knowledge assets not received through publishing, as they might have been offline or not active at the time. The sync feature performance will be monitored on the DKG testnet over the next days via the new telemetry system, and tuned for final release on the mainnet
Node runners on the testnet, update your nodes and check the instructions on how to enable sync.

In .origintrail_noderc file a top level add assetSync object to enable sync

{
   "modules": {
       ...
   },
   "auth": {
       ...
   },
   "assetSync": {
       "syncDKG": {
           "enabled": true,
           // Number of KCs suggested to be 50 in beginning
           "syncBatchSize": <NUMBER-OF-KCs-IN-BATCH>
       },
       // You already have this if your node is syncing a paranet
       "syncParanets": []
   }
}

#TraceOn