-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from Wayonb/master
Update to 9.6.3 release
- Loading branch information
Showing
16 changed files
with
37 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
FROM techbureau/catapult-rest-server-nightly:commit-1aeac3f | ||
FROM symbolplatform/symbol-rest-nightly:commit-5eb7eac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FROM techbureau/catapult-server:gcc-0.9.5.1 | ||
FROM techbureau/catapult-server:gcc-0.9.6.3 | ||
ADD ./userconfig /userconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FROM techbureau/catapult-tools:gcc-0.9.5.1 | ||
FROM techbureau/catapult-tools:gcc-0.9.6.3 | ||
ADD ./userconfig /userconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
common/ruby/catapult-templates/peer_node/resources/config-harvesting.properties.mt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
[harvesting] | ||
|
||
harvesterVrfPrivateKey = {{harvester_vrf_private_key}} | ||
harvesterSigningPrivateKey = {{harvester_signing_private_key}} | ||
harvesterVrfPrivateKey = {{harvester_vrf_private_key}} | ||
|
||
enableAutoHarvesting = true | ||
maxUnlockedAccounts = 5 | ||
delegatePrioritizationPolicy = Importance | ||
beneficiaryPublicKey = 0000000000000000000000000000000000000000000000000000000000000000 | ||
beneficiaryAddress = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
(function prepareHashLockCollections() { | ||
db.createCollection('hashLocks'); | ||
db.hashLocks.createIndex({ 'lock.hash': 1 }, { unique: true }); | ||
db.hashLocks.createIndex({ 'lock.senderPublicKey': 1 }); | ||
db.hashLocks.createIndex({ 'lock.senderAddress': 1 }); | ||
db.hashLocks.createIndex({ 'lock.ownerAddress': 1 }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
(function prepareSecretLockCollections() { | ||
db.createCollection('secretLocks'); | ||
db.secretLocks.createIndex({ 'lock.compositeHash': 1 }, { unique: true }); | ||
db.secretLocks.createIndex({ 'lock.senderPublicKey': 1 }); | ||
db.secretLocks.createIndex({ 'lock.senderAddress': 1 }); | ||
db.secretLocks.createIndex({ 'lock.ownerAddress': 1 }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
(function prepareMetadataCollections() { | ||
db.createCollection('metadata'); | ||
db.metadata.createIndex({ 'metadataEntry.compositeHash': 1 }, { unique: true }); | ||
db.metadata.createIndex({ 'metadataEntry.senderPublicKey': 1, 'metadataEntry.metadataType': 1, 'metadataEntry.scopedMetadataKey': 1 }); | ||
db.metadata.createIndex({ 'metadataEntry.targetPublicKey': 1, 'metadataEntry.metadataType': 1, 'metadataEntry.scopedMetadataKey': 1 }); | ||
db.metadata.createIndex({ 'metadataEntry.sourceAddress': 1, 'metadataEntry.metadataType': 1, 'metadataEntry.scopedMetadataKey': 1 }); | ||
db.metadata.createIndex({ 'metadataEntry.targetAddress': 1, 'metadataEntry.metadataType': 1, 'metadataEntry.scopedMetadataKey': 1 }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
(function prepareMosaicCollections() { | ||
db.createCollection('mosaics'); | ||
db.mosaics.createIndex({ 'mosaic.id': 1 }, { unique: true }); | ||
db.mosaics.createIndex({ 'mosaic.ownerPublicKey': 1 }); | ||
db.mosaics.createIndex({ 'mosaic.ownerAddress': 1 }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
(function prepareMultisigCollections() { | ||
db.createCollection('multisigs'); | ||
db.multisigs.createIndex({ 'multisig.accountPublicKey': 1 }, { unique: true }); | ||
db.multisigs.createIndex({ 'multisig.accountAddress': 1 }, { unique: true }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters