Skip to content

Commit

Permalink
Forks activation time was updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykiselev committed Apr 18, 2017
1 parent adaaa53 commit 7a96719
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ object FunctionalitySettings {
allowLeaseTransactionAfterTimestamp = 1491192000000L,
requirePaymentUniqueId = 1491192000000L,
allowExchangeTransactionAfterTimestamp = 1491192000000L,
allowInvalidReissueInSameBlockUntilTimestamp = 1492682400000L,
allowMultipleLeaseCancelTransactionUntilTimestamp = 1492682400000L,
resetEffectiveBalancesAtHeight = 460400)
allowInvalidReissueInSameBlockUntilTimestamp = 1492768800000L,
allowMultipleLeaseCancelTransactionUntilTimestamp = 1492768800000L,
resetEffectiveBalancesAtHeight = 462000)

val TESTNET = FunctionalitySettings(
allowTemporaryNegativeUntil = 1477958400000L,
Expand All @@ -52,9 +52,9 @@ object FunctionalitySettings {
allowLeaseTransactionAfterTimestamp = Long.MinValue,
requirePaymentUniqueId = 1485942685000L,
allowExchangeTransactionAfterTimestamp = 1483228800000L,
allowInvalidReissueInSameBlockUntilTimestamp = 1492473600000L,
allowMultipleLeaseCancelTransactionUntilTimestamp = 1492473600000L,
resetEffectiveBalancesAtHeight = 49500)
allowInvalidReissueInSameBlockUntilTimestamp = 1492560000000L,
allowMultipleLeaseCancelTransactionUntilTimestamp = 1492560000000L,
resetEffectiveBalancesAtHeight = 51500)

val configPath = "waves.blockchain.custom.functionality"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ class BlockchainSettingsSpecification extends FlatSpec with Matchers {
settings.functionalitySettings.allowUnissuedAssetsUntil should be(1479416400000L)
settings.functionalitySettings.allowBurnTransactionAfterTimestamp should be(1481110521000L)
settings.functionalitySettings.requirePaymentUniqueId should be(1485942685000L)
settings.functionalitySettings.allowInvalidReissueInSameBlockUntilTimestamp should be(1492473600000L)
settings.functionalitySettings.allowMultipleLeaseCancelTransactionUntilTimestamp should be(1492473600000L)
settings.functionalitySettings.allowInvalidReissueInSameBlockUntilTimestamp should be(1492560000000L)
settings.functionalitySettings.allowMultipleLeaseCancelTransactionUntilTimestamp should be(1492560000000L)
settings.functionalitySettings.allowExchangeTransactionAfterTimestamp should be(1483228800000L)
settings.functionalitySettings.resetEffectiveBalancesAtHeight should be(49500)
settings.functionalitySettings.resetEffectiveBalancesAtHeight should be(51500)
settings.genesisSettings.timestamp should be (1478000000000L)
settings.genesisSettings.signature should be ("5uqnLK3Z9eiot6FyYBfwUnbyid3abicQbAZjz38GQ1Q8XigQMxTK4C1zNkqS1SVw7FqSidbZKxWAKLVoEsp4nNqa")
settings.genesisSettings.initialBalance should be (10000000000000000L)
Expand Down Expand Up @@ -131,9 +131,9 @@ class BlockchainSettingsSpecification extends FlatSpec with Matchers {
settings.functionalitySettings.allowTransactionsFromFutureUntil should be(1479168000000L)
settings.functionalitySettings.allowUnissuedAssetsUntil should be(1479416400000L)
settings.functionalitySettings.allowBurnTransactionAfterTimestamp should be(1491192000000L)
settings.functionalitySettings.allowInvalidReissueInSameBlockUntilTimestamp should be(1492682400000L)
settings.functionalitySettings.allowMultipleLeaseCancelTransactionUntilTimestamp should be(1492682400000L)
settings.functionalitySettings.resetEffectiveBalancesAtHeight should be(460400)
settings.functionalitySettings.allowInvalidReissueInSameBlockUntilTimestamp should be(1492768800000L)
settings.functionalitySettings.allowMultipleLeaseCancelTransactionUntilTimestamp should be(1492768800000L)
settings.functionalitySettings.resetEffectiveBalancesAtHeight should be(462000)
settings.functionalitySettings.requirePaymentUniqueId should be(1491192000000L)
settings.functionalitySettings.allowExchangeTransactionAfterTimestamp should be(1491192000000L)
settings.genesisSettings.timestamp should be (1465742577614L)
Expand Down

0 comments on commit 7a96719

Please sign in to comment.