change default genesis timestamp to 2024-07-01T10:00:00

This commit is contained in:
Alex Ant
2025-10-23 18:06:54 +05:00
parent a2692003d5
commit 8fd34abdd8
3 changed files with 14 additions and 4 deletions
+12 -2
View File
@@ -21,6 +21,10 @@ on:
override-reference-contracts:
description: 'Override reference contracts ref'
type: string
skip-tests:
description: 'Skip running tests'
type: boolean
default: false
permissions:
packages: read
@@ -129,6 +133,7 @@ jobs:
tests:
name: Tests (${{matrix.cfg.name}})
needs: [platform-cache, build-base]
if: ${{ !inputs.skip-tests }}
strategy:
fail-fast: false
matrix:
@@ -171,6 +176,7 @@ jobs:
np-tests:
name: NP Tests (${{matrix.cfg.name}})
needs: [platform-cache, build-base]
if: ${{ !inputs.skip-tests }}
strategy:
fail-fast: false
matrix:
@@ -212,6 +218,7 @@ jobs:
lr-tests:
name: LR Tests (${{matrix.cfg.name}})
needs: [platform-cache, build-base]
if: ${{ !inputs.skip-tests }}
strategy:
fail-fast: false
matrix:
@@ -253,6 +260,7 @@ jobs:
libtester-tests:
name: libtester tests
needs: [platform-cache, build-base, v, package]
if: ${{ !inputs.skip-tests }}
strategy:
fail-fast: false
matrix:
@@ -343,9 +351,11 @@ jobs:
all-passing:
name: All Required Tests Passed
needs: [tests, np-tests, libtester-tests]
needs: [tests, np-tests, libtester-tests, package]
if: always()
runs-on: ubuntu-latest
steps:
- if: needs.tests.result != 'success' || needs.np-tests.result != 'success' || needs.libtester-tests.result != 'success'
- if: inputs.skip-tests && needs.package.result != 'success'
run: false
- if: ${{ !inputs.skip-tests && (needs.tests.result != 'success' || needs.np-tests.result != 'success' || needs.libtester-tests.result != 'success') }}
run: false
+1 -1
View File
@@ -5,7 +5,7 @@
namespace eosio { namespace chain {
genesis_state::genesis_state() {
initial_timestamp = fc::time_point::from_iso_string( "2018-06-01T12:00:00" );
initial_timestamp = fc::time_point::from_iso_string( "2024-07-01T10:00:00" );
initial_key = fc::variant(eosio_root_key).as<public_key_type>();
}
+1 -1
View File
@@ -16,7 +16,7 @@ delay=1
read -d '' genesis << EOF
{
"initial_timestamp": "2018-06-01T12:00:00.000",
"initial_timestamp": "2024-07-01T10:00:00.000",
"initial_key": "EOS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV",
"initial_configuration": {
"max_block_net_usage": 1048576,