From 59bdbef42a2f6cd7fa8d849879be8f791c839764 Mon Sep 17 00:00:00 2001 From: Jerry Date: Wed, 4 Jan 2023 12:11:49 -0800 Subject: [PATCH 1/5] Mainnet Delhi fork --- builder/files/genesis-mainnet-v1.json | 7 +++++-- internal/cli/server/chains/mainnet.go | 7 +++++-- params/config.go | 7 +++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/builder/files/genesis-mainnet-v1.json b/builder/files/genesis-mainnet-v1.json index d3f0d02206..ca443529dc 100644 --- a/builder/files/genesis-mainnet-v1.json +++ b/builder/files/genesis-mainnet-v1.json @@ -15,14 +15,17 @@ "londonBlock": 23850000, "bor": { "jaipurBlock": 23850000, + "delhiBlock": 38174376, "period": { "0": 2 }, "producerDelay": { - "0": 6 + "0": 6, + "38174376": 4 }, "sprint": { - "0": 64 + "0": 64, + "38174376": 16 }, "backupMultiplier": { "0": 2 diff --git a/internal/cli/server/chains/mainnet.go b/internal/cli/server/chains/mainnet.go index 7aee9cd606..b52883c0b3 100644 --- a/internal/cli/server/chains/mainnet.go +++ b/internal/cli/server/chains/mainnet.go @@ -30,14 +30,17 @@ var mainnetBor = &Chain{ LondonBlock: big.NewInt(23850000), Bor: ¶ms.BorConfig{ JaipurBlock: big.NewInt(23850000), + DelhiBlock: big.NewInt(38174376), Period: map[string]uint64{ "0": 2, }, ProducerDelay: map[string]uint64{ - "0": 6, + "0": 6, + "38174376": 4, }, Sprint: map[string]uint64{ - "0": 64, + "0": 64, + "38174376": 16, }, BackupMultiplier: map[string]uint64{ "0": 2, diff --git a/params/config.go b/params/config.go index d97d6957fa..c645b2dc76 100644 --- a/params/config.go +++ b/params/config.go @@ -404,14 +404,17 @@ var ( LondonBlock: big.NewInt(23850000), Bor: &BorConfig{ JaipurBlock: big.NewInt(23850000), + DelhiBlock: big.NewInt(38174376), Period: map[string]uint64{ "0": 2, }, ProducerDelay: map[string]uint64{ - "0": 6, + "0": 6, + "38174376": 4, }, Sprint: map[string]uint64{ - "0": 64, + "0": 64, + "38174376": 16, }, BackupMultiplier: map[string]uint64{ "0": 2, From c12e8f2aa88350533ec586a0962179ba626b9434 Mon Sep 17 00:00:00 2001 From: Jerry Date: Wed, 4 Jan 2023 12:12:19 -0800 Subject: [PATCH 2/5] Set version to stable --- params/version.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/version.go b/params/version.go index 24f5cf4966..a415e0a9b9 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 0 // Major version component of the current release - VersionMinor = 3 // Minor version component of the current release - VersionPatch = 2 // Patch version component of the current release - VersionMeta = "beta" // Version metadata to append to the version string + VersionMajor = 0 // Major version component of the current release + VersionMinor = 3 // Minor version component of the current release + VersionPatch = 2 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string ) // Version holds the textual version string. From db7eb29d886da0ead09a45a59114e5ae432d6eeb Mon Sep 17 00:00:00 2001 From: Arpit Temani Date: Thu, 5 Jan 2023 10:41:27 +0530 Subject: [PATCH 3/5] change delhi hardfork block number --- builder/files/genesis-mainnet-v1.json | 6 +++--- internal/cli/server/chains/mainnet.go | 6 +++--- params/config.go | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/builder/files/genesis-mainnet-v1.json b/builder/files/genesis-mainnet-v1.json index ca443529dc..b01313bd57 100644 --- a/builder/files/genesis-mainnet-v1.json +++ b/builder/files/genesis-mainnet-v1.json @@ -15,17 +15,17 @@ "londonBlock": 23850000, "bor": { "jaipurBlock": 23850000, - "delhiBlock": 38174376, + "delhiBlock": 38189056, "period": { "0": 2 }, "producerDelay": { "0": 6, - "38174376": 4 + "38189056": 4 }, "sprint": { "0": 64, - "38174376": 16 + "38189056": 16 }, "backupMultiplier": { "0": 2 diff --git a/internal/cli/server/chains/mainnet.go b/internal/cli/server/chains/mainnet.go index b52883c0b3..b2570e9b2f 100644 --- a/internal/cli/server/chains/mainnet.go +++ b/internal/cli/server/chains/mainnet.go @@ -30,17 +30,17 @@ var mainnetBor = &Chain{ LondonBlock: big.NewInt(23850000), Bor: ¶ms.BorConfig{ JaipurBlock: big.NewInt(23850000), - DelhiBlock: big.NewInt(38174376), + DelhiBlock: big.NewInt(38189056), Period: map[string]uint64{ "0": 2, }, ProducerDelay: map[string]uint64{ "0": 6, - "38174376": 4, + "38189056": 4, }, Sprint: map[string]uint64{ "0": 64, - "38174376": 16, + "38189056": 16, }, BackupMultiplier: map[string]uint64{ "0": 2, diff --git a/params/config.go b/params/config.go index c645b2dc76..94729224bb 100644 --- a/params/config.go +++ b/params/config.go @@ -404,17 +404,17 @@ var ( LondonBlock: big.NewInt(23850000), Bor: &BorConfig{ JaipurBlock: big.NewInt(23850000), - DelhiBlock: big.NewInt(38174376), + DelhiBlock: big.NewInt(38189056), Period: map[string]uint64{ "0": 2, }, ProducerDelay: map[string]uint64{ "0": 6, - "38174376": 4, + "38189056": 4, }, Sprint: map[string]uint64{ "0": 64, - "38174376": 16, + "38189056": 16, }, BackupMultiplier: map[string]uint64{ "0": 2, From b480db16e87eb86ae8c0ada538b288bec072d3b2 Mon Sep 17 00:00:00 2001 From: Manav Darji Date: Sat, 7 Jan 2023 11:58:03 +0530 Subject: [PATCH 4/5] handle future chain import and skip peer drop (#650) * handle future chain import and skip peer drop * add block import metric * params: bump version to v0.3.3-stable --- core/blockchain.go | 6 +++++ core/forkchoice.go | 4 +--- core/forkchoice_test.go | 30 ++++++++++++------------ eth/downloader/downloader.go | 11 +++++---- eth/downloader/downloader_test.go | 4 ++-- eth/downloader/whitelist/service.go | 15 ++++++------ eth/downloader/whitelist/service_test.go | 18 +++++++++----- interfaces.go | 2 +- params/version.go | 2 +- 9 files changed, 53 insertions(+), 39 deletions(-) diff --git a/core/blockchain.go b/core/blockchain.go index 8103e4a05e..74fd4bfeda 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -68,6 +68,7 @@ var ( snapshotStorageReadTimer = metrics.NewRegisteredTimer("chain/snapshot/storage/reads", nil) snapshotCommitTimer = metrics.NewRegisteredTimer("chain/snapshot/commits", nil) + blockImportTimer = metrics.NewRegisteredMeter("chain/imports", nil) blockInsertTimer = metrics.NewRegisteredTimer("chain/inserts", nil) blockValidationTimer = metrics.NewRegisteredTimer("chain/validation", nil) blockExecutionTimer = metrics.NewRegisteredTimer("chain/execution", nil) @@ -1518,6 +1519,11 @@ func (bc *BlockChain) insertChain(chain types.Blocks, verifySeals, setHead bool) it := newInsertIterator(chain, results, bc.validator) block, err := it.next() + // Update the block import meter; it will just record chains we've received + // from other peers. (Note that the actual chain which gets imported would be + // quite low). + blockImportTimer.Mark(int64(len(headers))) + // Check the validity of incoming chain isValid, err1 := bc.forker.ValidateReorg(bc.CurrentBlock().Header(), headers) if err1 != nil { diff --git a/core/forkchoice.go b/core/forkchoice.go index 018afdfac9..7dd1a86307 100644 --- a/core/forkchoice.go +++ b/core/forkchoice.go @@ -114,9 +114,7 @@ func (f *ForkChoice) ReorgNeeded(current *types.Header, header *types.Header) (b func (f *ForkChoice) ValidateReorg(current *types.Header, chain []*types.Header) (bool, error) { // Call the bor chain validator service if f.validator != nil { - if isValid := f.validator.IsValidChain(current, chain); !isValid { - return false, nil - } + return f.validator.IsValidChain(current, chain) } return true, nil diff --git a/core/forkchoice_test.go b/core/forkchoice_test.go index 2e7b40d8ff..2493d4701f 100644 --- a/core/forkchoice_test.go +++ b/core/forkchoice_test.go @@ -13,7 +13,7 @@ import ( // chainValidatorFake is a mock for the chain validator service type chainValidatorFake struct { - validate func(currentHeader *types.Header, chain []*types.Header) bool + validate func(currentHeader *types.Header, chain []*types.Header) (bool, error) } // chainReaderFake is a mock for the chain reader service @@ -21,7 +21,7 @@ type chainReaderFake struct { getTd func(hash common.Hash, number uint64) *big.Int } -func newChainValidatorFake(validate func(currentHeader *types.Header, chain []*types.Header) bool) *chainValidatorFake { +func newChainValidatorFake(validate func(currentHeader *types.Header, chain []*types.Header) (bool, error)) *chainValidatorFake { return &chainValidatorFake{validate: validate} } @@ -46,18 +46,18 @@ func TestPastChainInsert(t *testing.T) { getTd := func(hash common.Hash, number uint64) *big.Int { return big.NewInt(int64(number)) } - validate := func(currentHeader *types.Header, chain []*types.Header) bool { + validate := func(currentHeader *types.Header, chain []*types.Header) (bool, error) { // Put all explicit conditions here // If canonical chain is empty and we're importing a chain of 64 blocks if currentHeader.Number.Uint64() == uint64(0) && len(chain) == 64 { - return true + return true, nil } // If canonical chain is of len 64 and we're importing a past chain from 54-64, then accept it if currentHeader.Number.Uint64() == uint64(64) && chain[0].Number.Uint64() == 55 && len(chain) == 10 { - return true + return true, nil } - return false + return false, nil } mockChainReader := newChainReaderFake(getTd) mockChainValidator := newChainValidatorFake(validate) @@ -116,18 +116,18 @@ func TestFutureChainInsert(t *testing.T) { getTd := func(hash common.Hash, number uint64) *big.Int { return big.NewInt(int64(number)) } - validate := func(currentHeader *types.Header, chain []*types.Header) bool { + validate := func(currentHeader *types.Header, chain []*types.Header) (bool, error) { // Put all explicit conditions here // If canonical chain is empty and we're importing a chain of 64 blocks if currentHeader.Number.Uint64() == uint64(0) && len(chain) == 64 { - return true + return true, nil } // If length of future chains > some value, they should not be accepted if currentHeader.Number.Uint64() == uint64(64) && len(chain) <= 10 { - return true + return true, nil } - return false + return false, nil } mockChainReader := newChainReaderFake(getTd) mockChainValidator := newChainValidatorFake(validate) @@ -174,18 +174,18 @@ func TestOverlappingChainInsert(t *testing.T) { getTd := func(hash common.Hash, number uint64) *big.Int { return big.NewInt(int64(number)) } - validate := func(currentHeader *types.Header, chain []*types.Header) bool { + validate := func(currentHeader *types.Header, chain []*types.Header) (bool, error) { // Put all explicit conditions here // If canonical chain is empty and we're importing a chain of 64 blocks if currentHeader.Number.Uint64() == uint64(0) && len(chain) == 64 { - return true + return true, nil } // If length of chain is > some fixed value then don't accept it if currentHeader.Number.Uint64() == uint64(64) && len(chain) <= 20 { - return true + return true, nil } - return false + return false, nil } mockChainReader := newChainReaderFake(getTd) mockChainValidator := newChainValidatorFake(validate) @@ -227,7 +227,7 @@ func (c *chainReaderFake) GetTd(hash common.Hash, number uint64) *big.Int { func (w *chainValidatorFake) IsValidPeer(remoteHeader *types.Header, fetchHeadersByNumber func(number uint64, amount int, skip int, reverse bool) ([]*types.Header, []common.Hash, error)) (bool, error) { return true, nil } -func (w *chainValidatorFake) IsValidChain(current *types.Header, headers []*types.Header) bool { +func (w *chainValidatorFake) IsValidChain(current *types.Header, headers []*types.Header) (bool, error) { return w.validate(current, headers) } func (w *chainValidatorFake) ProcessCheckpoint(endBlockNum uint64, endBlockHash common.Hash) {} diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go index f92bc652a6..135defc0b9 100644 --- a/eth/downloader/downloader.go +++ b/eth/downloader/downloader.go @@ -357,10 +357,6 @@ func (d *Downloader) LegacySync(id string, head common.Hash, td, ttd *big.Int, m return err // This is an expected fault, don't keep printing it in a spin-loop } - if errors.Is(err, whitelist.ErrNoRemoteCheckoint) { - log.Warn("Doesn't have remote checkpoint yet", "peer", id, "err", err) - } - log.Warn("Synchronisation failed, retrying", "peer", id, "err", err) return err @@ -1581,6 +1577,13 @@ func (d *Downloader) importBlockResults(results []*fetchResult) error { // of the blocks delivered from the downloader, and the indexing will be off. log.Debug("Downloaded item processing failed on sidechain import", "index", index, "err", err) } + + // If we've received too long future chain error (from whitelisting service), + // return that as the root error and `errInvalidChain` as context. + if errors.Is(err, whitelist.ErrLongFutureChain) { + return fmt.Errorf("%v: %w", errInvalidChain, err) + } + return fmt.Errorf("%w: %v", errInvalidChain, err) } return nil diff --git a/eth/downloader/downloader_test.go b/eth/downloader/downloader_test.go index d8765ef077..a9242fba5b 100644 --- a/eth/downloader/downloader_test.go +++ b/eth/downloader/downloader_test.go @@ -1426,8 +1426,8 @@ func (w *whitelistFake) IsValidPeer(_ *types.Header, _ func(number uint64, amoun return w.validate(w.count) } -func (w *whitelistFake) IsValidChain(current *types.Header, headers []*types.Header) bool { - return true +func (w *whitelistFake) IsValidChain(current *types.Header, headers []*types.Header) (bool, error) { + return true, nil } func (w *whitelistFake) ProcessCheckpoint(_ uint64, _ common.Hash) {} diff --git a/eth/downloader/whitelist/service.go b/eth/downloader/whitelist/service.go index 0e905cce28..3cb402c442 100644 --- a/eth/downloader/whitelist/service.go +++ b/eth/downloader/whitelist/service.go @@ -30,6 +30,7 @@ func NewService(maxCapacity uint) *Service { var ( ErrCheckpointMismatch = errors.New("checkpoint mismatch") + ErrLongFutureChain = errors.New("received future chain of unacceptable length") ErrNoRemoteCheckoint = errors.New("remote peer doesn't have a checkoint") ) @@ -74,16 +75,16 @@ func (w *Service) IsValidPeer(remoteHeader *types.Header, fetchHeadersByNumber f // IsValidChain checks the validity of chain by comparing it // against the local checkpoint entries -func (w *Service) IsValidChain(currentHeader *types.Header, chain []*types.Header) bool { +func (w *Service) IsValidChain(currentHeader *types.Header, chain []*types.Header) (bool, error) { // Check if we have checkpoints to validate incoming chain in memory if len(w.checkpointWhitelist) == 0 { // We don't have any entries, no additional validation will be possible - return true + return true, nil } // Return if we've received empty chain if len(chain) == 0 { - return false + return false, nil } var ( @@ -95,7 +96,7 @@ func (w *Service) IsValidChain(currentHeader *types.Header, chain []*types.Heade if chain[len(chain)-1].Number.Uint64() < oldestCheckpointNumber { // We have future whitelisted entries, so no additional validation will be possible // This case will occur when bor is in middle of sync, but heimdall is ahead/fully synced. - return true + return true, nil } // Split the chain into past and future chain @@ -109,18 +110,18 @@ func (w *Service) IsValidChain(currentHeader *types.Header, chain []*types.Heade // Don't accept future chain of unacceptable length (from current block) if len(futureChain)+offset > int(w.checkpointInterval) { - return false + return false, ErrLongFutureChain } // Iterate over the chain and validate against the last checkpoint // It will handle all cases where the incoming chain has atleast one checkpoint for i := len(pastChain) - 1; i >= 0; i-- { if _, ok := w.checkpointWhitelist[pastChain[i].Number.Uint64()]; ok { - return pastChain[i].Hash() == w.checkpointWhitelist[pastChain[i].Number.Uint64()] + return pastChain[i].Hash() == w.checkpointWhitelist[pastChain[i].Number.Uint64()], nil } } - return true + return true, nil } func splitChain(current uint64, chain []*types.Header) ([]*types.Header, []*types.Header) { diff --git a/eth/downloader/whitelist/service_test.go b/eth/downloader/whitelist/service_test.go index c21490d125..df23df2fc9 100644 --- a/eth/downloader/whitelist/service_test.go +++ b/eth/downloader/whitelist/service_test.go @@ -119,8 +119,9 @@ func TestIsValidChain(t *testing.T) { s := NewMockService(10, 10) chainA := createMockChain(1, 20) // A1->A2...A19->A20 // case1: no checkpoint whitelist, should consider the chain as valid - res := s.IsValidChain(nil, chainA) + res, err := s.IsValidChain(nil, chainA) require.Equal(t, res, true, "expected chain to be valid") + require.Equal(t, err, nil, "expected error to be nil") tempChain := createMockChain(21, 22) // A21->A22 @@ -132,8 +133,9 @@ func TestIsValidChain(t *testing.T) { // case2: We're behind the oldest whitelisted block entry, should consider // the chain as valid as we're still far behind the latest blocks - res = s.IsValidChain(chainA[len(chainA)-1], chainA) + res, err = s.IsValidChain(chainA[len(chainA)-1], chainA) require.Equal(t, res, true, "expected chain to be valid") + require.Equal(t, err, nil, "expected error to be nil") // Clear checkpoint whitelist and add blocks A5 and A15 in whitelist s.PurgeCheckpointWhitelist() @@ -144,8 +146,9 @@ func TestIsValidChain(t *testing.T) { // case3: Try importing a past chain having valid checkpoint, should // consider the chain as valid - res = s.IsValidChain(chainA[len(chainA)-1], chainA) + res, err = s.IsValidChain(chainA[len(chainA)-1], chainA) require.Equal(t, res, true, "expected chain to be valid") + require.Equal(t, err, nil, "expected error to be nil") // Clear checkpoint whitelist and mock blocks in whitelist tempChain = createMockChain(20, 20) // A20 @@ -156,22 +159,25 @@ func TestIsValidChain(t *testing.T) { require.Equal(t, s.length(), 1, "expected 1 items in whitelist") // case4: Try importing a past chain having invalid checkpoint - res = s.IsValidChain(chainA[len(chainA)-1], chainA) + res, _ = s.IsValidChain(chainA[len(chainA)-1], chainA) require.Equal(t, res, false, "expected chain to be invalid") + // Not checking error here because we return nil in case of checkpoint mismatch // create a future chain to be imported of length <= `checkpointInterval` chainB := createMockChain(21, 30) // B21->B22...B29->B30 // case5: Try importing a future chain of acceptable length - res = s.IsValidChain(chainA[len(chainA)-1], chainB) + res, err = s.IsValidChain(chainA[len(chainA)-1], chainB) require.Equal(t, res, true, "expected chain to be valid") + require.Equal(t, err, nil, "expected error to be nil") // create a future chain to be imported of length > `checkpointInterval` chainB = createMockChain(21, 40) // C21->C22...C39->C40 // case5: Try importing a future chain of unacceptable length - res = s.IsValidChain(chainA[len(chainA)-1], chainB) + res, err = s.IsValidChain(chainA[len(chainA)-1], chainB) require.Equal(t, res, false, "expected chain to be invalid") + require.Equal(t, err, ErrLongFutureChain, "expected error") } func TestSplitChain(t *testing.T) { diff --git a/interfaces.go b/interfaces.go index ff6d80b1ec..88a173adea 100644 --- a/interfaces.go +++ b/interfaces.go @@ -242,7 +242,7 @@ type StateSyncFilter struct { // interface for whitelist service type ChainValidator interface { IsValidPeer(remoteHeader *types.Header, fetchHeadersByNumber func(number uint64, amount int, skip int, reverse bool) ([]*types.Header, []common.Hash, error)) (bool, error) - IsValidChain(currentHeader *types.Header, chain []*types.Header) bool + IsValidChain(currentHeader *types.Header, chain []*types.Header) (bool, error) ProcessCheckpoint(endBlockNum uint64, endBlockHash common.Hash) GetCheckpointWhitelist() map[uint64]common.Hash PurgeCheckpointWhitelist() diff --git a/params/version.go b/params/version.go index a415e0a9b9..199e49095f 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 2 // Patch version component of the current release + VersionPatch = 3 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string ) From dcdac12c449c4fee6977ac544b724d6c53b21d98 Mon Sep 17 00:00:00 2001 From: Manav Darji Date: Mon, 9 Jan 2023 23:00:49 +0530 Subject: [PATCH 5/5] Bump bor version in control files for v0.3.3 mainnet release --- packaging/templates/package_scripts/control | 2 +- packaging/templates/package_scripts/control.arm64 | 2 +- packaging/templates/package_scripts/control.profile.amd64 | 2 +- packaging/templates/package_scripts/control.profile.arm64 | 2 +- packaging/templates/package_scripts/control.validator | 2 +- packaging/templates/package_scripts/control.validator.arm64 | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packaging/templates/package_scripts/control b/packaging/templates/package_scripts/control index 03f040dd63..cb62165a5e 100644 --- a/packaging/templates/package_scripts/control +++ b/packaging/templates/package_scripts/control @@ -1,5 +1,5 @@ Source: bor -Version: 0.3.2 +Version: 0.3.3 Section: develop Priority: standard Maintainer: Polygon diff --git a/packaging/templates/package_scripts/control.arm64 b/packaging/templates/package_scripts/control.arm64 index 4070f5b9e9..56276cb43a 100644 --- a/packaging/templates/package_scripts/control.arm64 +++ b/packaging/templates/package_scripts/control.arm64 @@ -1,5 +1,5 @@ Source: bor -Version: 0.3.2 +Version: 0.3.3 Section: develop Priority: standard Maintainer: Polygon diff --git a/packaging/templates/package_scripts/control.profile.amd64 b/packaging/templates/package_scripts/control.profile.amd64 index fa39632654..4ddd8424ff 100644 --- a/packaging/templates/package_scripts/control.profile.amd64 +++ b/packaging/templates/package_scripts/control.profile.amd64 @@ -1,5 +1,5 @@ Source: bor-profile -Version: 0.3.2 +Version: 0.3.3 Section: develop Priority: standard Maintainer: Polygon diff --git a/packaging/templates/package_scripts/control.profile.arm64 b/packaging/templates/package_scripts/control.profile.arm64 index 5bfc993dae..9f9301c925 100644 --- a/packaging/templates/package_scripts/control.profile.arm64 +++ b/packaging/templates/package_scripts/control.profile.arm64 @@ -1,5 +1,5 @@ Source: bor-profile -Version: 0.3.2 +Version: 0.3.3 Section: develop Priority: standard Maintainer: Polygon diff --git a/packaging/templates/package_scripts/control.validator b/packaging/templates/package_scripts/control.validator index efb2ee1593..d43250c891 100644 --- a/packaging/templates/package_scripts/control.validator +++ b/packaging/templates/package_scripts/control.validator @@ -1,5 +1,5 @@ Source: bor-profile -Version: 0.3.2 +Version: 0.3.3 Section: develop Priority: standard Maintainer: Polygon diff --git a/packaging/templates/package_scripts/control.validator.arm64 b/packaging/templates/package_scripts/control.validator.arm64 index 7173b2c30e..5a50f8cb39 100644 --- a/packaging/templates/package_scripts/control.validator.arm64 +++ b/packaging/templates/package_scripts/control.validator.arm64 @@ -1,5 +1,5 @@ Source: bor-profile -Version: 0.3.2 +Version: 0.3.3 Section: develop Priority: standard Maintainer: Polygon