https://gitlab.com/tezos/tezos

sort by:
Revision Author Date Message Commit Date
686f7f8 Docs/Protocols: update changelog for Alpha 04 April 2024, 07:50:58 UTC
d53518e tezt/tests: adapt baker reward regression tests 04 April 2024, 07:50:57 UTC
f4dd2a6 tezt/tests: adapt rpc regression files 04 April 2024, 07:50:57 UTC
ce67fba proto/tests: fix gas_levels tests 04 April 2024, 07:50:57 UTC
3135783 proto: adapt AI EMA parameters 04 April 2024, 07:50:57 UTC
ca8e2c2 Proto: set block times to 8s and update related constants 04 April 2024, 07:50:54 UTC
67507d5 fixup! Proto: Update previous constants representation 04 April 2024, 07:25:07 UTC
83a0f53 Test/Tezt: Migrate from Paris 04 April 2024, 05:58:05 UTC
3ef0883 Proto: clean rbt relative code 04 April 2024, 05:58:05 UTC
64775be fixup! Proto: remove AI related migration code 04 April 2024, 05:58:00 UTC
5d8486c Proto: remove AI related migration code 03 April 2024, 09:33:54 UTC
91de5c8 Proto: Update previous constants representation 03 April 2024, 09:33:54 UTC
cb25c35 Proto: Migrate from Paris 03 April 2024, 09:33:54 UTC
1197e82 Merge tezos/tezos!12677: Update data encoding Co-authored-by: Raphaël Proust <code@bnwr.net> Approved-by: Philippe Wang <philippe.wang@gmail.com> Approved-by: Martin Tomazic <martin.tomazic97@gmail.com> Approved-by: Romain <romain@nomadic-labs.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12677 03 April 2024, 08:50:54 UTC
8a511c2 Everywhere: adapt to newest data-encoding 03 April 2024, 08:23:58 UTC
ff61004 Client-libs: regenerate kaitai-struct files 03 April 2024, 08:23:58 UTC
d691a0b kaitai-of-data-encoding: adapt to newest data-encoding 03 April 2024, 08:23:58 UTC
17d4136 Manifest: update data-encoding version 03 April 2024, 08:23:57 UTC
f88dd46 Merge tezos/tezos!12753: EVM Node: Fix off-by-one in the stream RPC for blueprints Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12753 03 April 2024, 07:16:04 UTC
f2c8595 EVM Node: Fix off-by-one in the stream RPC for blueprints When an observer starts, it connects to another EVM node to fetch blueprints, starting from `next_blueprint_number'. If (1) it was in sync with its EVM node endpoint, and (2) it is just stooped and restarted, then from the current implementation of the stream RPC, it is requesting a blueprint from the future, and the RPC fails with [ { "kind": "temporary", "id": "failure", "msg": "Cannot start watching from a level in the future" } ] This patch changes the behavior to allow an observer node to wait for the next level. It is not clear why the observer node was not failing without this patch... 02 April 2024, 21:33:38 UTC
b0b45af Merge tezos/tezos!12305: DAL/Tests: refutations with smart rollups Co-authored-by: iguerNL@Functori <iguer@functori.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12305 02 April 2024, 17:27:39 UTC
d761b8e Dal/tezt: test scenario with DAL refutation 02 April 2024, 17:01:54 UTC
2040533 Tezt/Dal: be able to set the use_mock_srs_for_testing flag 02 April 2024, 17:01:48 UTC
9544c82 Dal/tezt: be able to provide a (data dir) name when creating a DAL node 02 April 2024, 16:59:48 UTC
aea28fd Dal/tezt: be able to set a value for smart_rollup_timeout_period_in_blocks 02 April 2024, 16:59:48 UTC
eb01f6d Tezt/lib_tezos: export Sc_rollup helper prioritize_refute_operations 02 April 2024, 16:59:47 UTC
7984b3c Merge tezos/tezos!12734: EVM Node: Rework blueprint monitor RPC Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12734 02 April 2024, 16:36:19 UTC
1c7f00a EVM Node: Rework blueprint monitor RPC The previous implementation is suffering several issues. - It creates the watcher detecting the head, so there is a race condition which can lead to having a new head created before the watcher is createad. - There is no need for fetching the last produced blueprint: all we need is to know the current head. This patch fixes both issues. 02 April 2024, 16:14:30 UTC
7c0cb14 Merge tezos/tezos!12733: EVM Node: Fail on missing blueprint only in sequencer mode Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12733 02 April 2024, 16:13:44 UTC
bc28a25 EVM Node: Fail on missing blueprint only in sequencer mode If an observer is started after a while, it will have to catch-up with two chains: the one built by the sequencer and the one verified by the rollup node. Nothing prevents the observer node to crawl the latter faster than the former, which means it will get confirmation of blueprint applications before ever knowing about said blueprints. This is why we make the “missing blueprint” event a warning rather than an error for the observer. This means we need to refactor some tests that were relying on the previous behavior. 02 April 2024, 15:54:53 UTC
b5944eb Merge tezos/tezos!12725: Tezt/DAL: remove broken feature flag test Co-authored-by: Raphaël Cauderlier <raphael.cauderlier@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12725 02 April 2024, 15:54:05 UTC
630a85a Tezt/DAL: remove broken feature flag test Closes #6967 02 April 2024, 15:34:42 UTC
cda27fd Merge tezos/tezos!12732: Nix: Caqti needs codesign utility on Mac Co-authored-by: Ole Krüger <ole.kruger@trili.tech> Approved-by: Julien Coolen <julien.coolen@nomadic-labs.com> Approved-by: Gauthier <gauthier@marigold.dev> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> Approved-by: Ryan Tan <ryan.tan@trili.tech> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12732 02 April 2024, 15:33:51 UTC
9c758f4 Nix: Caqti needs codesign utility on Mac 02 April 2024, 15:31:54 UTC
f3163e4 Merge tezos/tezos!12748: evm-node: add support for password_filename Co-authored-by: Sylvain Ribstein <sylvain.ribstein@nomadic-labs.com> Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12748 02 April 2024, 15:31:04 UTC
8c0699b evm-node: add support for password_filename 02 April 2024, 15:12:02 UTC
9638b21 Merge tezos/tezos!12746: RISC-V: MR Template Co-authored-by: Emma Turner <emma.turner@trili.tech> Approved-by: Ole Krüger <ole.kruger@trili.tech> Approved-by: Victor Dumitrescu <victor.dumitrescu@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12746 02 April 2024, 15:11:11 UTC
053ce41 RISC-V: MR Template 02 April 2024, 14:44:51 UTC
d9ee341 Merge tezos/tezos!12745: Tezt: add a test that fails Co-authored-by: Romain Bardou <romain@nomadic-labs.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> Approved-by: Raphaël Cauderlier <raphael.cauderlier@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12745 02 April 2024, 14:43:59 UTC
ee24088 Tezt: add a test that fails 02 April 2024, 14:20:17 UTC
6982f88 Merge tezos/tezos!12738: Tezt/Tezos: Export path for baker binary Co-authored-by: saroupille <francois.thire@nomadic-labs.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12738 02 April 2024, 14:18:49 UTC
433cf63 Tezt/Tezos: Export path for baker binary 02 April 2024, 13:57:23 UTC
08ae530 Merge tezos/tezos!12736: Tezt/Tezos: Extend Node config helpers for runners Co-authored-by: saroupille <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12736 02 April 2024, 13:56:30 UTC
4a1cc08 Tezt/Tezos: Extend Node config helpers for runners 02 April 2024, 13:36:48 UTC
d6856d2 Merge tezos/tezos!12739: Tezos/DAL: Add gossipsub connections RPC Co-authored-by: saroupille <francois.thire@nomadic-labs.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12739 02 April 2024, 13:35:56 UTC
6c31957 Tezos/DAL: Add gossipsub connections RPC 02 April 2024, 13:14:08 UTC
364dbe8 Merge tezos/tezos!12717: Manifest: Allow specify globs for preprocessor dependencies Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Romain <romain@nomadic-labs.com> Approved-by: Killian Delarue <killian.delarue@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12717 02 April 2024, 13:13:12 UTC
51bfb21 Manifest: Allow specify globs for preprocessor dependencies 02 April 2024, 12:40:30 UTC
110f281 Merge tezos/tezos!12708: Merge in data-encoding's source code Co-authored-by: Raphaël Proust <code@bnwr.net> Co-authored-by: Lucas Randazzo <lucas@nomadic-labs.com> Co-authored-by: vbot <vincent.botbol@nomadic-labs.com> Co-authored-by: Diane Gallois-Wong <diane.galloiswong@gmail.com> Co-authored-by: Peter Duchovni <peter.duchovni@nomadic-labs.com> Co-authored-by: Hans Hoglund <hans.hoglund@trili.tech> Approved-by: Romain <romain@nomadic-labs.com> Approved-by: Philippe Wang <philippe.wang@gmail.com> Approved-by: Boubacar Sall <boubacar@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12708 02 April 2024, 12:34:23 UTC
c660667 Manifest: exclude data-encoding from build-file generation 02 April 2024, 12:11:23 UTC
c53ab89 Data-encoding: mark as data-only (ignored by dune) for now The aim is to make this MR easy to review/merge. To this end, the MR scope is to only bring in data-encoding's source code, but not to start using it in the rest of the code. This latter part is done in a follow-up MR. 02 April 2024, 12:11:18 UTC
d883a07 Merge branch 'make-ready-for-monorepo' into master 02 April 2024, 12:10:35 UTC
950b396 Merge tezos/tezos!12744: Etherlink/Tests: tag the correct test as slow this time Co-authored-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12744 02 April 2024, 12:02:28 UTC
f7a8da3 Etherlink/Tests: tag the correct test as slow this time 02 April 2024, 11:42:59 UTC
274dd2a Merge tezos/tezos!12742: EVM Node: Remove outdated TODO #6826 Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12742 02 April 2024, 11:04:09 UTC
65260d6 EVM Node: Remove outdated TODO #6826 02 April 2024, 10:42:54 UTC
260502b Merge tezos/tezos!12709: EVM: fix reboot check Co-authored-by: pecornilleau <pe.cornilleau@marigold.dev> Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12709 02 April 2024, 10:42:11 UTC
1ef04ae EVM: fix reboot test 02 April 2024, 10:24:21 UTC
3278cac EVM: reboot after stage one of proxy 02 April 2024, 10:24:21 UTC
f238e5f EVM: account for crypto in allocated ticks 02 April 2024, 10:24:21 UTC
5f7f6b9 EVM: reboot wrt allocated ticks 02 April 2024, 10:24:21 UTC
cba0d55 Merge tezos/tezos!12460: DAL node: fork amplification Co-authored-by: Raphaël Cauderlier <raphael.cauderlier@nomadic-labs.com> Co-authored-by: Anne-Laure <al.schmitt@protonmail.com> Co-authored-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Raphaël Cauderlier <raphael.cauderlier@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12460 02 April 2024, 10:23:37 UTC
03e50ea DAL/Amplification: don't read shards from store to publish them 02 April 2024, 10:04:25 UTC
b28738b DAL node: Export Slot_manager.publish_proved_shards 02 April 2024, 10:04:25 UTC
ba22e14 DAL node: split Slot_manager.publish_slot_data 02 April 2024, 10:04:25 UTC
417d429 DAL/Amplification: split the try_amplification function 02 April 2024, 10:04:25 UTC
a106798 DAL/Amplification: Rename amplify into try_amplification 02 April 2024, 10:04:25 UTC
810cd43 Dal_node/Amplificator: parent triggers child’s exit 02 April 2024, 10:04:25 UTC
14cb6b6 Dal_node/Amplificator: fork reconstruction Co-authored-by: Anne-Laure Schmitt <al.schmitt@protonmail.com> Co-authored-by: Raphaël Cauderlier <raphael.cauderlier@nomadic-labs.com> 02 April 2024, 10:04:24 UTC
d049a7a DAL/Amplification: refactoring Co-authored-by: François Thiré <francois.thire@nomadic-labs.com> 02 April 2024, 10:04:24 UTC
6b9e563 DAL/Amplification: don't compute nor store the slot Co-authored-by: François Thiré <francois.thire@nomadic-labs.com> 02 April 2024, 10:04:24 UTC
0e0d247 DAL/Amplification: don't reload/recompute slot and polynomial Co-authored-by: François Thiré <francois.thire@nomadic-labs.com> 02 April 2024, 10:04:24 UTC
fe25494 DAL/Amplification: warn about missing prover SRS 02 April 2024, 10:04:24 UTC
022a64b DAL/Amplification: don't try to reconstruct without prover SRS 02 April 2024, 10:04:24 UTC
4609ff3 DAL/Amplification: inline with_proof Co-authored-by: François Thiré <francois.thire@nomadic-labs.com> 02 April 2024, 10:04:24 UTC
b414fe5 Dal/Amplification: inline Slot_manager.add_commitment_shards Co-authored-by: François Thiré <francois.thire@nomadic-labs.com> 02 April 2024, 10:04:24 UTC
c0b14d2 DAL/Amplification: document with_amplification_lock 02 April 2024, 10:04:24 UTC
f9729a9 Merge tezos/tezos!12683: Etherlink: keep l2 level of l1 last head and add reset command Co-authored-by: Sylvain Ribstein <sylvain.ribstein@nomadic-labs.com> Approved-by: Pierrick Couderc <pierrick.couderc@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12683 02 April 2024, 10:03:36 UTC
a0400d8 evm/tezt: test to reset the state and then produce block 02 April 2024, 09:43:47 UTC
4201c01 evm/node: nit fix 02 April 2024, 09:43:47 UTC
5838bf1 evm/node: add command to reset the state of the evm_context 02 April 2024, 09:43:47 UTC
eac0691 evm/node: store l2_level with latest l1 level processed 02 April 2024, 09:43:47 UTC
5900f68 Merge tezos/tezos!12728: DAL: catch precomputation error Co-authored-by: Anne-Laure <al.schmitt@protonmail.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12728 02 April 2024, 09:43:03 UTC
d58d79d Dal/Cryptobox: catch Kate_amortized.preprocess_multiple_multi_reveals exception 02 April 2024, 09:22:22 UTC
3a07a44 Kzg/Kate_amortized: raise SRS_too_short in preprocess_multiple_multi_reveals 02 April 2024, 09:22:22 UTC
afdbea4 Merge tezos/tezos!12731: EVM Kernel: Fix reimbursement to the sequencer pool address Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Emma Turner <1623821-emturner@users.noreply.gitlab.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12731 02 April 2024, 09:07:48 UTC
b786d92 EVM Kernel: Fix reimbursement to the sequencer pool address The failsafe storage mechanism implemented recently is quite subtle (and error-prone). During the production of a block, `/evm/world_state` is copied to `/tmp/evm/world_state` and *every access to the durable storage is prefixed by `/tmp`*. This is why the configuration is passed over in the various block validation function. This logic was not used for the sequencer pool address, which is read in place at `/evm/sequencer_pool_address` (that is, `/tmp/evm/sequencer_pool_address`). We fix this bug by reading the sequencer pool address once, before starting the block production, and passing the argument over to use site. 02 April 2024, 08:49:58 UTC
31647d2 Merge tezos/tezos!12737: Tezt/Tezos: Extend Dal node functions for runners Co-authored-by: saroupille <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12737 02 April 2024, 08:36:40 UTC
9a71289 Tezt/DAL: Do not use `--peer` when there is no peer 02 April 2024, 08:16:52 UTC
02a2889 Tezt/DAL: Make DAL node compatible with runners 02 April 2024, 08:16:52 UTC
4653902 Tezt/Tezos: Extend Dal node functions for runners 02 April 2024, 08:16:52 UTC
226d9e8 Merge tezos/tezos!12735: DAL: Activate the DAL by default on the shell side Co-authored-by: saroupille <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12735 02 April 2024, 08:16:02 UTC
0718a6f DAL: Activate the DAL by default on the shell side 02 April 2024, 07:52:58 UTC
04f2a3f Merge tezos/tezos!12720: doc: define type normalization and its effects Co-authored-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> Approved-by: Raphaël Cauderlier <raphael.cauderlier@nomadic-labs.com> Approved-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12720 29 March 2024, 18:44:44 UTC
82ae710 doc: define type normalization and its effect on annotations 29 March 2024, 18:23:36 UTC
293e3b6 doc: add type normalization teaser in the client command 29 March 2024, 18:23:36 UTC
8c68546 Merge tezos/tezos!12661: shell: rename block validation in block application Co-authored-by: Albin Coquereau <albin.coquereau@nomadic-labs.com> Approved-by: Victor Allombert <victor.allombert@nomadic-labs.com> Approved-by: vbot <vincent.botbol@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/12661 29 March 2024, 18:22:54 UTC
6c7e46f lib_shell: improve block validator request errors 29 March 2024, 15:12:41 UTC
87366cb lib_shell: rename validate in precheck_and_apply in block_validator 29 March 2024, 15:12:41 UTC
849d0e4 lib_shell: rename validation in application in block_validator events and errors 29 March 2024, 15:12:41 UTC
back to top